What is the best way to tokenize/split a NSString in Objective-C?
Found this at http://borkware.com/quickies/one?topic=NSString (useful link):
NSString *string = @"oop:ack:bork:greeble:ponies";
NSArray *chunks = [string componentsSeparatedByString: @":"];
Hope this helps!
Adam