var vcOne : Bool = true
现在在DetailsVIEwController中
overrIDe func prepareForSegue(segue: UIStoryboardSegue,sender: AnyObject!) { if segue.IDentifIEr == "segue_one" { let mainVC : MainVIEwController = segue.destinationVIEwController as! MainVIEwController secondVC.vcOne = true } else if segue.IDentifIEr == "segue_two" { let mainVC : MainVIEwController = segue.destinationVIEwController as! MainVIEwController secondVC.vcOne = false } }
现在在MainVIEw控制器中
overrIDe func vIEwWillAppear(animated: Bool) { super.vIEwWillAppear(animated) //Now check here for which segue if(vcOne) { // implement for button one click } else { // implement for button two click } }
希望它能帮到你
总结以上是内存溢出为你收集整理的如何知道使用Swift使用哪个segue?全部内容,希望文章能够帮你解决如何知道使用Swift使用哪个segue?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)