In my AppDelegate.m file, I created the following feedback button style:
UIImage *backBtnImage = [UIImage imageNamed:@"back.png"]; [[UIBarButtonItem appearance] setBackButtonBackgroundImage: backBtnImage forState: UIControlStateNormal barMetrics: UIBarMetricsDefault]; [[UIBarButtonItem appearance] setBackButtonBackgroundImage: backBtnImage forState: UIControlStateHighlighted barMetrics: UIBarMetricsDefault];
For some reason, the background image is displayed only on each view after a space, when the button is pressed once - it is loaded every time for each view after that.
I tried to clear the project, but to no avail.
source share