I’m trying to implement stuff similar to spell check, but I need to get the word that is limited by a space. EX: “HI HOW R U”, I need to collect HI, HOW and so on as they type. i.e. After user hits HI and space I need to collect HI and do a spell check.
I’m trying to implement stuff similar to spell check, but I need to get
Share
Check the documentation for NSString Here. You want the message
componentsSepeparatedByString:.