Skip to content

Instantly share code, notes, and snippets.

@s4cha
Created January 13, 2013 19:19
Show Gist options
  • Save s4cha/4525753 to your computer and use it in GitHub Desktop.
Save s4cha/4525753 to your computer and use it in GitHub Desktop.
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Overide Back button everywhere.
UIImage *backButtonImage = [[UIImage imageNamed:@"backButton"]resizableImageWithCapInsets:UIEdgeInsetsMake(0, 15, 0, 3)];
[[UIBarButtonItem appearance] setBackButtonBackgroundImage:backButtonImage forState:UIControlStateNormal barMetrics:UIBarMetricsDefault];
return YES;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment