我有一个带有表视图的简单iMessage扩展。我尝试使用activeConversation来插入文本,但是当我点击单元格时 - 没有任何反应。
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath){
print(fullAppData[indexPath.row].title)
self.activeConversation?.insertText(fullAppData[indexPath.row].title, completionHandler: nil)
}