This commit is contained in:
Andrey Blinov
2019-11-20 01:13:59 +07:00
parent e78c12a6d3
commit a5f2dcfcd5
54 changed files with 2065 additions and 80 deletions

View File

@@ -14,11 +14,14 @@ class ViewController: UIViewController {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
@IBAction func openChat(_ sender: Any) {
let chatController = storyboard?.instantiateViewController(withIdentifier: "DemoChatController") as! DemoController
navigationController?.pushViewController(chatController, animated: true)
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}