I have an NSString I'm working with, but I would like to parse it by character length. So break it apart into an NSArray, and have each object in the array be x characters from that string. So basically, break up the string into sub strings of a certain length
So, how do I do it?
example:
NSString *string = @"Here is my string"
NSArray objects:
"Her"
"e i"
"s m"
"y s"
"tri"
"ng"