【发布时间】:2019-01-03 13:27:30
【问题描述】:
警告:尝试在 iChat.NewMessageController: 0x7fee42529e60> 上显示 iChat.ChatMessagesController: 0x7fee42679fd0>,其视图不在窗口层次结构中!
我有以编程方式创建的表格视图和情节提要中的其他视图,我试图从表格视图中选择一行来呈现。
类:ChatMessagesController
故事板 ID ChatMessagesController
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
dismiss(animated: true) {
let storyBoard: UIStoryboard = UIStoryboard(name: "Main", bundle: nil)
let newViewController = storyBoard.instantiateViewController(withIdentifier: "ChatMessagesController") as! ChatMessagesController
self.present(newViewController, animated: true, completion: nil)
}
}
【问题讨论】: