Assuming there’s no worry about escaping/unescaping commas contained within the strings, it should be this simple:
NSArray *items = [theString componentsSeparatedByString:@","];
Assuming there’s no worry about escaping/unescaping commas contained within the strings, it should be this simple:
NSArray *items = [theString componentsSeparatedByString:@","];