iOS 5 [UINavigationBar appearance] setBackgroundImage does not do work(iOS 5 [UINavigationBar 外观] setBackgroundImage 不起作用)
问题描述
我在 Xcode 4.2 Build 4D199 中创建了一个新的测试 iOS5 项目,并尝试如上所述设置 UINavigationBar 的外观,但没有任何反应.
I created a new test iOS5 project in Xcode 4.2 Build 4D199 and tried to set the appearance of the UINavigationBar as described above, but nothing happens.
我在viewDidLoad中试过的代码:
[[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"navbar-iphone.png"] forBarMetrics:UIBarMetricsDefault];
我可以让它工作的唯一方法是在 UINavigationBar 的实例上设置外观.喜欢:
The only way I can get it to work is to set the appearance on the instance of the UINavigationBar. Like:
[self.navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:@"navbar-iphone.png"] forBarMetrics:UIBarMetricsDefault];
发生了什么事?有其他人遇到过这个问题吗?
What is going on? Has anyone else had this issue?
推荐答案
viewDidLoad 是搞乱导航控制器导航栏的 appearance 代理的错误位置.在创建导航控制器之前执行此类操作.在您的应用委托的 applicationDidFinishLaunching 中是一个好地方.
viewDidLoad is the wrong place to be messing with the appearance proxy of a navigation controller's navigation bar. Do this sort of thing before the navigation controller is even created. In your app delegate's applicationDidFinishLaunching is a good place.
这篇关于iOS 5 [UINavigationBar 外观] setBackgroundImage 不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:iOS 5 [UINavigationBar 外观] setBackgroundImage 不起作用
基础教程推荐
- iOS4 创建后台定时器 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
