这个问题几乎总结了一下。我检查过很多不同的单词,但都没有回复。这是我的代码:
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
print("accessed")
print(words[indexPath.row])
if UIReferenceLibraryViewController.dictionaryHasDefinition(forTerm: words[indexPath.row]) {
print("in")
let ref: UIReferenceLibraryViewController = UIReferenceLibraryViewController(term: words[indexPath.row])
self.present(ref, animated: true, completion: nil)
}
}
我正在尝试显示一个单词的定义。任何帮助,将不胜感激。谢谢!