iOS 7 UIBarButton back button arrow color

后端 未结 17 1998
情话喂你
情话喂你 2020-12-04 06:30

I\'m trying to change the back button arrow

\"enter

I\'m currently using the

17条回答
  •  死守一世寂寞
    2020-12-04 06:40

    You have to set the tintColor of the entire app.

    self.window.tintColor = [UIColor redColor];
    

    Or in Swift 3:

    self.window?.tintColor = UIColor.blue
    

    Source: iOS 7 UI Transition Guide

提交回复
热议问题