Accessing the number of characters in a string object can be done this way:
Code:
float stringLength = [yourArrayName objectAtIndex:0] length];
This code snippet will take the first object from your array, and return the number of characters the string has.