I want to incorporate a custom back button - I'm able to get the above result using
self.navigationItem.backBarButtonItem = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"back-btn"] style:UIBarButtonItemStylePlain target:nil action:nil];
but how do you remove the native blue button?
Thanks to all the answerers - found a simpler way of doing it...
Swift 4 (if you just want to hide it)
Check this one:
Use the below code to hide the back arrow:
You can hide backbutton
To create custom leftbarbutton you can use this:
Why can't you try with the Custom UIButton :