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")
    }
}
getting error while dismissing one view controller and moving to another viewcontroller by completionblock
please help me in solving this problem, I referred site but still I got stuck here.
 
     
    