ios5有一个内置词典。如何从我的应用程序中提取它?例如,如果有一个按钮,当它们单击它时,它会从字典中提取一个随机单词。
答案 0 :(得分:6)
你想要的是UIReferenceLibraryViewController
(满口的!)
e.g:
UIReferenceLibraryViewController *dictController = [[UIReferenceLibraryViewController alloc] initWithTerm:word];
[self presentModalViewController:dictController animated:YES];
其中“word”是您要查找的单词。