gpt4 book ai didi

ios - 从 xib 文件中的操作按钮推送另一个 View Controller

转载 作者:行者123 更新时间:2023-11-30 12:59:09 27 4
gpt4 key购买 nike

我有一个从 .xib 呈现的 View Controller 。在 .xib 里面有一个按钮;我想要按钮将 View Controller 推送到另一个 View Controller (ViewControllerPeopleNew)。

我使用操作按钮:

@IBAction func _hitPeople(sender: AnyObject) {
let mapViewControllerObejct = self.storyboard?.instantiateViewControllerWithIdentifier("peoplenew") as? ViewControllerPeopleNew
self.navigationController?.pushViewController(mapViewControllerObejct!, animated: false)
}

但出现错误:

Signal SIGABRT
unrecognized selector sent to instance

我已经检查了有关名称标识符 View Controller 的所有内容,一切都正确。

最佳答案

从带有 XIB 的 View Controller 中,您无法使用下面的代码来使用 Storyboard

@IBAction func _hitPeople(sender: AnyObject) {

let storyboard = UIStoryboard(name: "storyboadname", bundle: nil)
let mapViewControllerObejct = storyboard.instantiateViewControllerWithIdentifier("peoplenew") as? ViewControllerPeopleNew
self.navigationController?.pushViewController(mapViewControllerObejct!, animated: false)
}

关于ios - 从 xib 文件中的操作按钮推送另一个 View Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40042357/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com