iPhone one title for all view controllers(iPhone 为所有视图控制器提供一个标题)
问题描述
我有一个带有标签栏控制器(带有 4 个视图控制器)的应用程序,它包含一个导航控制器.所有这些都是以编程方式创建的.我的问题:有没有办法为所有视图控制器设置一个导航栏标题?例如:当我切换标签时,标题是相同的.对我来说理想的解决方案是在应用程序委托文件中设置标题.非常感谢
I have an app with tab bar controller (with 4 views controller) and it contains a navigation controller. All of this was create programmatically. My question: Is there a way how to set one navigation bar title for all view controllers ? For example: When i switch tabs, title is the same. Ideal solution for me is set title in app delegate file. Thanks a lot
推荐答案
如果你知道会有 4 个视图控制器,那就做 self.title = @"your title"; 如果你想要更改您的标题"一次并将它们全部更改,只需创建一个静态全局或使用 plist.并将代码放在 viewDidAppear 下,以便每次刷新.不需要做任何太复杂的事情:)
If you know that there will be exactly 4 views controller, just do self.title = @"your title"; If you want to change "your title" once and have them all changed, just create a static global or use plist. And put the code under viewDidAppear so that it refreshes every time. No need to do anything too complex :)
这篇关于iPhone 为所有视图控制器提供一个标题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:iPhone 为所有视图控制器提供一个标题
基础教程推荐
- iOS4 创建后台定时器 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
