I know of two methods and each have their own disadvantages:

Do you guys know of any better method? (Again, it's for iOS 4.0 as I need the app to be compatible with iOS 4.0+)

Thanks guys,

link|improve this question

57% accept rate
feedback

2 Answers

You probably need two methods, conditioned by the OS version. This is because on 5.0 and later, the drawRect function isn't called. Instead, 5.0 has it's own routines for custom navigation bar. I ended up using both 4.0 and 5.0 methods, and determining the version and choosing the proper one at run time.

As far as the first method, I don't see why you really need interface builder. Just instantiate your objects programmatically and add them as subviews. Interface builder itself doesn't do much more than that -- it's just a handier way of dealing with them.

link|improve this answer
The reason IB is used is because navigationBar on UINavigationController is read-only. But, by subclassing and changing the class of the navigation bar in IB, you can coerce the navigation controller into populating it's navigationBar property with an instance of your subclass that implements -drawRect:. – Mark Adams Jan 12 at 19:56
Owen, can you share you method? – Van Du Tran Jan 13 at 0:05
feedback

Actually, there's no need to swizzle methods, add categories or use Interface Builder, instead, you can subclass UINavigationBar and use NSKeyedUnarchiver to change the class of UINavigationController.navigationBar to your custom subclass.

+ (UINavigationController*)customizableNavigationControllerWithController:(UIViewController*)controller {

NSAssert(controller != nil, @"UINavigationController(CustomNavigationBar) customizableControllerWithController: controller can not be nil");

UINavigationController *navController = [[[UINavigationController alloc] initWithRootViewController:nil] autorelease];

NSData *navControllerData = [NSKeyedArchiver archivedDataWithRootObject:navController];

NSKeyedUnarchiver *unarchiver = [[[NSKeyedUnarchiver alloc] initForReadingWithData:navControllerData] autorelease];

[unarchiver setClass:[CustomNavigationBar class] forClassName:@"UINavigationBar"];

UINavigationController *customizableNavController = [unarchiver decodeObjectForKey:@"root"];

customizableNavController.viewControllers = [NSArray arrayWithObject:controller];

return customizableNavController;

}

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.