Files
OnlineChatSdk-SwiftPM/Example/OnlineChatSdk/ViewController.swift

30 lines
1009 B
Swift
Raw Normal View History

2019-11-15 23:21:03 +07:00
//
// ViewController.swift
// OnlineChatSdk
//
// Created by bekannax on 11/15/2019.
// Copyright (c) 2019 bekannax. All rights reserved.
//
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
2019-11-20 01:13:59 +07:00
@IBAction func openChat(_ sender: Any) {
2020-02-11 17:06:11 +07:00
// let chatController = storyboard?.instantiateViewController(withIdentifier: "DemoChatController") as! DemoController
let chatController = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "DemoChatController") as! DemoController
// navigationController?.pushViewController(chatController, animated: true)
navigationController?.present(chatController, animated: true, completion: nil)
2019-11-20 01:13:59 +07:00
}
2019-11-15 23:21:03 +07:00
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}