How can I split the string @\"Hello\" to either:
@\"Hello\"
\'H\'
\'e\'
\'l\'
\'
A user529758 mentions, split your string - the C way - like:
const char *array = [@"Hello" UTF8String];
But then loop it using:
for (int i = 0; i < sizeof(array); i++) { doSomethingWithCharacter(array[i]); }