1

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

ebsp
  • 102
  • 1
  • 8
  • 2
    check [this](http://stackoverflow.com/questions/3581532/convert-nsstring-into-char-array) out – PTBG Dec 07 '11 at 21:57

1 Answers1

0

[stringToCopy getCString:c_buffer maxLength:c_buffer_length encoding:NSUTF8StringEncoding];

Tony
  • 10,088
  • 20
  • 85
  • 139