How do you get the size of an NSArray and print it in the console using NSLog?
NSArray
NSLog
Take a look at this post for your array size question
Length of an Array in Objective C
Use NSLog to write to the console...
NSLog(@"The array size is %@", arraySize);