gpt4 book ai didi

ios - 从带有导航 Controller 的 xib 过渡

转载 作者:行者123 更新时间:2023-11-30 13:31:18 26 4
gpt4 key购买 nike

我正在类(class)中学习 Swift,并且有一个这样的项目:http://supereasyapps.com/blog/2014/12/15/create-an-ibdesignable-uiview-subclass-with-code-from-an-xib-file-in-xcode-6

项目结构 The structure of the project

基类 Base Class

所以它在模拟器上看起来 So it looks on an emulator

我想单击“按我”按钮,然后通过导航 Controller 转到另一个 View (后退按钮在哪里),如下所示(最好是在 Main.storyboard 上正常显示): enter image description here

这是真的吗?请问有什么解决办法吗?github上的项目:https://github.com/PaulSolt/CustomViewFromXib

最佳答案

在 ViewController 的 viewDidLoad 方法中尝试一下

self.navigationItem.leftBarButtonItem.title = "Press Me"

但我建议您根据我的经验,创建自己的后退按钮并自己处理。

override func viewDidLoad() {
self.navigationItem.backBarButtonItem = UIBarButtonItem(title:"Press Me", style:.Plain, target:nil, action:"backButtonPressed")
}

func backButtonPressed()
{
self.navigationController?.popViewControllerAnimated(true)
}

关于ios - 从带有导航 Controller 的 xib 过渡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36557717/

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