Reputation: 58060
I was wondering if there was any possible way to get the number (count) of objects in an NSArray Object
Upvotes: 3
Views: 5330
Reputation: 119144
You bet! From Apple's documentation:
NSUInteger numObjects = [myArray count];
Upvotes: 25