Is there a possibility to have UIToolBar with UIBarButtonItem's of different colors,
For example, The first button should have a red font color, where as the rest of buttons should have lightGray font color.
Note: Here are some considerations :)
-
I caot use
UITabBar, Though it can be achieved by offsetting title usingsetTitlePositionAdjustment -
I know that title color can be changed using
[barButton setTitleTextAttributes:@{NSFontAttributeName:toolBarFont,NSForegroundColorAttributeName:themeColor} forState:UIControlStateNormal];, i caot change title color of one item. - Caot use
UIBarButtonItemwithcustomView, as the width of items is not automatically adjusted.
