So I have no experience with arrays... But I need to use one to populate a UIPickerView. I am obtaining a list of objects via HTTP (NSURLConnection). This works fine. Curren
Assuming there's no worry about escaping/unescaping commas contained within the strings, it should be this simple:
NSArray *items = [theString componentsSeparatedByString:@","];
Objective-C
NSString *list = @"Karin, Carrie, David";
NSArray *listItems = [list componentsSeparatedByString:@", "];