Apple often uses the left arrow icon in its back button on the navigation controller, rather than in the back word or other text:
It is not possible to assign an image to this special button with a standard SDK. Am I missing something? If not, what is the most effective way to achieve this? (Can this be done without Photoshopping the entire button in several states?)
Thanks.
Create a UIBarButtonItem with an image and assign it as the backBarButtonItem property of your view view control.
backBarButtonItem
You can use -initWithImage:style:target:action: from UIBarButtonItem and put your image instead.
-initWithImage:style:target:action:
UIBarButtonItem
- (id)initWithImage:(UIImage *)image style:(UIBarButtonItemStyle)style target:(id)target action:(SEL)action
Source: https://habr.com/ru/post/1342925/More articles:Advanced Citation KRL - krlApplying MVVM pattern in WPF application - c #android - eclipse FileExplorer as root - androidusing standard C ++ library algorithms with valarray - c ++An ordered array into an associative array, odd values โโas keys - arraysRunning Junit test cases using 2 separate spring Application Context - springQuestion about observer pattern - JavaScript object removes itself from parent array? - javascriptGet image size using jQuery - jqueryDetect Android devices connected to Wi-Fi - androidCan I use jQuery to automatically find and set the width and height of multiple images? - jqueryAll Articles