您可以像在此答案中建议的那样进行 *** 作:
InstantiateViewControllerWithIdentifier。
此外,由于链接中的答案最初是用Objective-C编写的,因此我为您提供了用Swift重写的链接答案中的代码。
let vc = UIStoryboard(name:"Main", bundle:nil).instantiateViewController(withIdentifier: "identifier") as! SecondViewControllervc.resultsArray = self.resultsArray
编辑:
由于此答案引起了一定的关注,我想我为您提供了另一种更安全的方法。在上述答案中,如果
ViewControllerwith “ 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。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)