在Swift中以编程方式制作Segue

在Swift中以编程方式制作Segue,第1张

在Swift中以编程方式制作Segue

您可以像在此答案中建议的那样进行 *** 作:
InstantiateViewControllerWithIdentifier。

此外,由于链接中的答案最初是用Objective-C编写的,因此我为您提供了用Swift重写的链接答案中的代码。

let vc = UIStoryboard(name:"Main", bundle:nil).instantiateViewController(withIdentifier: "identifier") as! SecondViewControllervc.resultsArray = self.resultsArray

编辑:

由于此答案引起了一定的关注,我想我为您提供了另一种更安全的方法。在上述答案中,如果

ViewController
with “ identifier”
不是type,则应用程序将崩溃
SecondViewController
。在Swift中,您可以通过使用可选绑定来防止此崩溃:

guard let vc = UIStoryboard(name:"Main", bundle:nil).instantiateViewControllerWithIdentifier("identifier") as? SecondViewController else {    print("Could not instantiate view controller with identifier of type SecondViewController")    return}vc.resultsArray = self.resultsArrayself.navigationController?.pushViewController(vc, animated:true)

ViewController
如果类型为,则以这种方式推送
SecondViewController
。如果无法转换
SecondViewController
消息,则会打印一条消息,并且应用程序将保持当前状态
ViewController



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5013137.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-14
下一篇 2022-11-14

发表评论

登录后才能评论

评论列表(0条)

保存