UIReferenceLibraryViewController

UIReferenceLibraryViewController

几周前我看到 iOS 5 中有一个用于字典的 View Controller ,我们可以传入一个词,它会提供它的定义。我似乎无法在苹果文档中再次找到文档,有人知道名字是什么吗?

最佳答案

您正在尝试使用 UIReferenceLibraryViewController 提供的 Dictionary 服务

// Create the view controller
UIReferenceLibraryViewController *reference =
  [[[UIReferenceLibraryViewController alloc] initWithTerm:@"Word"] autorelease];

[self presentModalViewController:reference animated:YES];
}

关于iphone - iOS 5 中用于字典/定义单词的 View Controller ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8824172/

10-10 20:34