Change the font of a UIBarButtonItem

前端 未结 16 1133
春和景丽
春和景丽 2020-12-07 09:18

\"UIToolbar

I have a UIBarButtonItem in my UIToolbar titled

16条回答
  •  心在旅途
    2020-12-07 09:38

    Because UIBarButtonItem inherits from UIBarItem, you can try

    - (void)setTitleTextAttributes:(NSDictionary *)attributes
                      forState:(UIControlState)state
    

    but this is for iOS5 only. For iOS 3/4, you will have to use a custom view.

提交回复
热议问题