如何使用SWIFT在iOS中以编程方式进行分段

How to segue programmatically in iOS using Swift(如何使用SWIFT在iOS中以编程方式进行分段)

本文介绍了如何使用SWIFT在iOS中以编程方式进行分段的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在创建一个使用Facebook SDK对用户进行身份验证的应用程序。我正在尝试将Facebook的逻辑整合到一个单独的类中。以下是代码(为简单起见进行了删减):

import Foundation

class FBManager {
    class func fbSessionStateChane(fbSession:FBSession!, fbSessionState:FBSessionState, error:NSError?){
        //... handling all session states
        FBRequestConnection.startForMeWithCompletionHandler { (conn: FBRequestConnection!, result: AnyObject!, error: NSError!) -> Void in
        
            println("Logged in user: 
(result)");
        
            let storyboard = UIStoryboard(name: "Main", bundle: NSBundle.mainBundle())
            let loggedInView: UserViewController = storyboard.instantiateViewControllerWithIdentifier("loggedInView") as UserViewController
        
            loggedInView.result = result;
        
            //todo: segue to the next view???
        }
    }
}

我正在使用上面的类方法检查会话状态更改,它工作正常。

q:获得用户数据后,如何从此自定义类分割到下一个视图?

为了清楚起见,我在情节提要上有一个带有标识符的段,我正在尝试从不是视图控制器的类中执行段

推荐答案

如果情节提要中存在两个视图之间具有段标识符的段,则只需使用以下命令以编程方式调用它:

performSegue(withIdentifier: "mySegueID", sender: nil)

对于旧版本:

performSegueWithIdentifier("mySegueID", sender: nil)

您还可以执行以下操作:

presentViewController(nextViewController, animated: true, completion: nil)

或者如果您在导航控制器中:

self.navigationController?.pushViewController(nextViewController, animated: true)

这篇关于如何使用SWIFT在iOS中以编程方式进行分段的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:如何使用SWIFT在iOS中以编程方式进行分段

基础教程推荐