将参数传递给 UINavigationController 的主视图
我对 iPhone/iPad 开发还很陌生。在我的应用程序中,我有一个 uitabcontroller,在一个选项卡中,我将添加一个 uinavigation 控制器。但我意识到我需要在其他选项卡中使用相同的设计和功能,我希望重用代码,唯一的更改是该部分正在使用的 xml 文件。
无论如何,是否要在主视图的导航控制器中添加参数? 提前致谢。
i'm pretty new in the iPhone/iPad developing. In my application i have a uitabcontroller and in one tab, i'll add a uinavigation controller. But I realized that i need the same design and function in other tab, I would like the reuse the code and the only change would be the xml file that the section is using.
Is there anyway to add a parameter in a uinavigation controller for the main view?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以子类化
UINavigationController
,添加公共代码,然后让所有选项卡的视图控制器都使用此子类。因此,例如,您可以执行以下操作:并实现
initWithFoo
如下:希望这会有所帮助!
You could subclass
UINavigationController
, add in the common code, and have all your tab's view controllers use this subclass. So, for example, you could do:And implement
initWithFoo
like:Hope this helps!