从swift中的类加载viewController

时间:2014-11-15 10:48:43

标签: swift controller storyboard viewcontroller

嗨,我最近开始在swift开发,我有点迷惑。

我的登录系统知道用户是否进行了身份验证。

模型检查用户是否通过loginManager输入NSObject进行身份验证登录。

在loginManager之后验证如果用户登录则需要加载正确的storyBoard。

我有viewController - > ProfileViewController,我如何实时从loginManager以编程方式加载这个ViewController?

你好试着调用这个功能,但我得到黑屏,我不知道该做什么

 override init() {

    var profileViewController = profileViewController()        

    let storyboard:UIStoryboard = UIStoryboard(name:"Main", bundle:nil)

    let vc:UIViewController = storyboard.instantiateViewControllerWithIdentifier("profileViewController") as profileViewController

    vc.navigationController?.pushViewController(profileViewController, animated: true)
    vc.viewWillAppear(true)
}

0 个答案:

没有答案