When my viewcontroller initially loads my font color doesnt change. But if I go to another viewcontroller and then go back to this viewcontroller my button font finally changes color. I've tried adding the code below to the viewwillappear
and viewdidload
:
self.SaveBTN.titleLabel!.textColor = UIColor.blueColor()
Any Idea as to why the font color only changes when i go to another view controller and then switch back but not on the initial first load of the page?
Flow of app:
Navigation Controller -> tab bar Controller -> view controller (button is here)