I have a string in the following format
myString = \"cat+dog+cow\"
I need to store each string separated by + in to a array. Eg:
NSArray *myWords = [myString componentsSeparatedByString:@"+"];