Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

ios5 has a built in dictionary. How can I pull it up from within my app? For example, if there was a button, and when they click it, it pulls up a random word from the dictionary.

share|improve this question
@anon ios5 has a new built in dictionary. itunes.apple.com/app/id473493861 is an example of an app that uses it. The dictionary slides down from the top and overlays the app. – Kyle Dec 22 '11 at 4:21

1 Answer

What you want is the UIReferenceLibraryViewController (bit of a mouthfull!)

e.g.:

UIReferenceLibraryViewController *dictController = [[UIReferenceLibraryViewController alloc] initWithTerm:word];
[self presentModalViewController:dictController animated:YES];

where "word" is the word you want to lookup.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.