I've overrided(placed in category, or swizzled) UINavigationBar's drawRect to show custom background. In iOS 5 it's not working. What should I do?
feedback
|
|
Setting custom background for UINavigationBar to support iOS5 and iOS4 too! As you know, until iOS 5 came out, we used How to build app that will work on iOS 4 and iOS 5 with stylized You must to do both! In
and in
If you see, here we are asking if navbar will respondToSelector to avoid crash on iOS4! | |||||||||
feedback
|
|
Try to read iOS 5.0 Release Notes (https://developer.apple.com/library/prerelease/ios/#releasenotes/General/RN-iOSSDK-5_0/_index.html)
| |||
|
feedback
|
|
There's some possible solutions: Quickest fix For laziest of us :
Again. It works, but You shouldn't do it like this. Another way, as suggested in WWDC'11 is to override UINavigationBar (Create MyNavigationBar) and initialize UINavigationController from xib like here :
And finally, use logic flow switch for iOS5.0 and iOS5.0- Use new API where it's possible. Categories is wrong path, Swizzling is wrong path. (They're just whispering in your ears:"Give yourself to the Dark Side. It is the only way you can save your apps.") | |||||||||||||
feedback
|
|
Here's a less-ugly solution that works for both iOS4 and 5:
| |||
feedback
|
The above swizzling will allow you to set any custom background image for the UINavigationBar(iOS5 & iOS4). | |||
|
feedback
|