Is there any way to split up a NSString to an array with all the letters separated?
Something like:
NSString *str = @"hey dude";
//Array output : h,e,y,d,u,d,e
Is there any way to split up a NSString to an array with all the letters separated?
Something like:
NSString *str = @"hey dude";
//Array output : h,e,y,d,u,d,e
[stringToCopy getCString:c_buffer maxLength:c_buffer_length encoding:NSUTF8StringEncoding];