How do you get the size of an NSArray and print it in the console using NSLog?
NSArray
NSLog
int size = [array count]; NSLog(@"there are %d objects in the array", size);