I have a string of letters and I want to search it for a specific letter.
NSString *word = @"word";
How would I find out if the string contained a letter "w"?
Thanks
|
I have a string of letters and I want to search it for a specific letter.
How would I find out if the string contained a letter "w"? Thanks |
||||
|
|
|
You could do it using rangeOfString:
|
|||
|
|