I am having a string @”sairam”.
I need a characters separately and i need to store it into an ARRAY like
array = [@"s",@"a",@"i",@"r",@"a",@"m"];
how to do this give a loop like if i give a string it needs to divide charecters and store it into an array …
thanks in advance…
From http://www.idev101.com/code/Objective-C/Strings/split.html: