Upvote:4

Aprove answer
NSMutableArray *results = [NSMutableArray array];

for (int i = 0; i < [string length]; i++)
{
    NSString *substr = [string substringWithRange:NSMakeRange(i,1)];
    [results addObject:[NSNumber numberWithInt:[substr intValue]];
} 

NSLog(@" %@ separated into: %@", string, results);

Credit Goes to: stackoverflow.com

Related question with same questions but different answers