When i updated my app to iOS 7, my customize back button image is not visible for the very first time. Once i Click to the icon, button is visible.
Can anybody tell me how can I customize back button image using the following code
self.navigationController.navigationBar.backIndicatorImage = [UIImage imageNamed:kBackButtonImage];
self.navigationController.navigationBar.backIndicatorTransitionMaskImage = [UIImage imageNamed:kBackButtonImage];
I dont want to set custom image using the following code
- Create a custom
UIBarButtonItem
and manually assign it asUINavigationItem
'sleftBarButtonItem
.