Is there any quick way I can get the number of strings within a NSString array?
NSString *s[2]={@"1", @"2"}
I want to retrieve the length of 2 from this. I there something like (s.size) I know there is the -length method but that is for a string not a string array. I am new to Xcode please be gentle.