Change tint color of tabbar edit view controller

前端 未结 2 510
悲哀的现实
悲哀的现实 2021-01-22 03:34

I want to change the tint color for the Edit view controller of tab bar controller. I have managed to change the color for more view controller but not getting clue for this.

2条回答
  •  半阙折子戏
    2021-01-22 03:45

    By trying below code worked for me

      override func viewDidLoad() {
        super.viewDidLoad()
        //this line helped me
        self.view.tintColor = Utilities.mainColor()
      }
    

提交回复
热议问题