On Mon, Aug 16, 2010 at 9:00 AM, Mark Woollard
<email@hidden> wrote:
[members count] returns an integer, not a class instance, so you need to use:
NSLog(@"Count: %d",[members count]);
Actually, -[NSArray count] returns an NSUInteger, so you should really use:
NSLog (@"Count: %lu", (long)[members count]);
I know the cast is not particularly pleasant. Apple should probably add format modifiers for NSUInteger and NSInteger.