iPhone - 如何从应用程序中提取ios5的内置字典

时间:2011-12-22 03:34:19

标签: objective-c ios

ios5有一个内置词典。如何从我的应用程序中提取它?例如,如果有一个按钮,当它们单击它时,它会从字典中提取一个随机单词。

1 个答案:

答案 0 :(得分:6)

你想要的是UIReferenceLibraryViewController(满口的!)

e.g:

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

其中“word”是您要查找的单词。