If I want to explode a string by parts in PHP into an array, I have the nifty explode() function where I just do the following
$mystring = \"HI:THERE:HOW\";
NSArray *stringArray = [myString componentsSeparatedByString:@":"];