I believe I have tried all other SO solutions for this matter.
I use the following code to change the background image of my navigationbar backbutton.
UIImage *image = [UIImage imageNamed:@"standard_bt.png"];
[[UIBarButtonItem appearance] setBackButtonBackgroundImage:image forState:UIControlStateNormal barMetrics:UIBarMetricsDefault];
This makes the button appear like this:
Without this code, it appears like this:
Now, I would like the background image from the first picture, with the backbutton shape of the second picture.
Note: I would like to achieve this without having to modify the image named "standard_bt.png"
How do I do that? Is that possible?