Monday 18 September 2017

NaOpen another controller







import UIKit

class ViewController : UIViewController{
    
    override func viewDidLoad() {
        super.viewDidLoad()
   
        
    }
    
  
    
    @IBAction func funcGotoGroupListVC(_ sender: Any) {
        self.view.endEditing(true)
        let signUpVC = self.storyboard?.instantiateViewController(withIdentifier: "GroupsListViewController")
        self.navigationController?.pushViewController(signUpVC!, animated: false)

    }
}

No comments:

Post a Comment