我使用此代码在两个故事板之间跳转并且成功。
var sb = UIStoryboard(name: “storyboardbName”, bundle: nil)
var viewctrl = sb.instantiateViewControllerWithIdentifier(“a-view”) as! UIViewController
self.navigationController?.pushViewController(viewctrl, animated: true)
但是我怎样才能将价值传递到其他故事板? 当我之前只使用一个故事板时,我可以设置segue来传递值但是使用故事板,没有segue可以设置。