override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
dismiss(animated: true) {
let viewController = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "ChatPage")
self.present(viewController, animated: true, completion: nil)
print("111")
}
}
つのビューコントローラを却下し、completionblock
によって別のViewControllerに移動させながら、エラーを取得して、この問題を解決するために私を助けてください、私はサイトを参照しますが、まだIここにはまった。MessagePeopleTableViewController:0x7fb47dd44f80>は、ビューではありませんウィンドウ階層内
例を参照してください。https://stackoverflow.com/questions/26022756/warning-attempt-to-present-on-whose-view-is-not-in-the-window-hierarchy-s –