Quote:
Originally Posted by axiixc
So why would it be that calling the count method doesn't work?
|
The string specifier %@ is only used for printing Objective-C objects. The count method returns an NSUInteger, which is not an object. Change the format specifier to %u, which is used for printing unsigned integers, and you should be fine.