I am building an app that will allow users to type into a UITextInput field. I want to be able to scan what they type and extract possible keywords/phrases that could be used to populate other things in the app, and also have them sorted by popularity/trending.
Example:
- The user types the following string into the input: "My siblings are so embarrassing and I can't wait for them to leave me alone!"
- Expected Keyword Extraction: "siblings, embarrassing, alone,..."
- Expected Keyword Sorting by Popularity/Trend: "embarrassing, siblings, alone,..."
Is there an SDK or native iOS solution for this?