• Daily Archives: 2015年8月13日

使用Storyboard进行简单的界面跳转并传递参数

使用storyboard结合代码来做确实可以给开发带来很多的便利。

在实践的过程中,我们经常会遇到界面的跳转问题。通过控件和界面的建立的“连接”就可以了。

如果是navigationcontroller的跳转,则选择push的方式(否则xcode运行的时候会报错);

如果是Viewcontroller的跳转,则选择modal的方式。

如果你想通过代码来打开另外一个界面,则需要设置他们之间连接的segue.identifier,比如你设置为jumpid。

 

然后代码就可以这么写:

self.performSegueWithIdentifier("jumpid", sender:self);

 

如果你还想在跳转的时候传递数值过去,你可以这么写:

override func prepareForSegue(segue:UIStoryboardSegue, sender: AnyObject?) {
        if(segue.identifier =="jumpid") {
            var barInfo:BarInfoViewController = segue.destinationViewControlleras! BarInfoViewController;
            barInfo.name ="david";
            barInfo.age =99;
        }
    }

 

close