Skip to content

Instantly share code, notes, and snippets.

@Nitewriter
Created September 30, 2011 13:56
Show Gist options
  • Star 13 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save Nitewriter/1253807 to your computer and use it in GitHub Desktop.
Save Nitewriter/1253807 to your computer and use it in GitHub Desktop.
UINavigationController custom navigation bar
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Override point for customization after application launch.
// Create a new window and assign directly to provided iVar
_window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
// Implementation of new init method
MyCustomNavigationBar *navigationBar = [[MyCustomNavigationBar alloc] initWithFrame:CGRectZero];
UINavigationController *navigationController = [[UINavigationController alloc] initWithCustomNavigationBar:navigationBar];
[navigationBar release];
[self.window setRootViewController:navigationController];
[navigationController release];
[self.window makeKeyAndVisible];
return YES;
}
#import <UIKit/UIKit.h>
@interface UINavigationController (MTCustomNavigationBar)
- (id)initWithCustomNavigationBar:(UINavigationBar *)navigationBar;
@end
#import "UINavigationController-MTCustomNavigationBar.h"
#import <objc/runtime.h>
@implementation UINavigationController (MTCustomNavigationBar)
- (id)initWithCustomNavigationBar:(UINavigationBar *)navigationBar
{
self = [self initWithNibName:nil bundle:nil];
if (self)
{
// Init
[self setValue:navigationBar forKey:@"navigationBar"];
}
return self;
}
@end
@ihmunro
Copy link

ihmunro commented Feb 19, 2012

Does not work

@Nitewriter
Copy link
Author

This method is not ARC compatible. If you are using ARC you can simply replace the navigation bar using:
[navigationController setValue:navigationBar forKey:@"navigationBar"].

@wenboqiu
Copy link

Hi Nitewriter:

I test your code on ios5.1, the custom navigation bar appears, but the back button on the bar doesn't work, it doesn't call popViewControllerAnimated method when tap back button, however the back button will disappear...it is weird.

best regards

@Nitewriter
Copy link
Author

iOS 5.x introduced changes to the UINavigationBar that cause issues when using this method of replacement. You should use the setValue:forKey: replacement I mentioned to ihmunro.

@wenboqiu
Copy link

thanks for your feedback

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment