iOS 7 UIBarButton back button arrow color

后端 未结 17 2031
情话喂你
情话喂你 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:53

    Update Swift 3

    navigationController?.navigationItem.rightBarButtonItem?.tintColor = UIColor.yellow
    navigationController?.navigationBar.tintColor = UIColor.red
    navigationController?.navigationBar.barTintColor = UIColor.gray
    navigationController?.navigationBar.titleTextAttributes =  [NSForegroundColorAttributeName: UIColor.blue]
    

    Result:

提交回复
热议问题