Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS

Check if string is in English dictionary xcode

I would like to click a button and check if a string is in the English dictionary. If it is then display an NSLog to say.

1 Answer

Ben Jakuben
STAFF
Ben Jakuben
Treehouse Teacher

For this you would need to either include a full English dictionary in your app and check against that, or find a web-based dictionary. I would recommend just querying the web.

Wiktionary has an API that looks pretty useful. Your button could make a request to this API to check for the word. The Blog Reader and Self-Destructing Message App projects should help you understand how to use an API over the web if that is unfamiliar to you.

Thanks so much. That's helped a lot.