Change the alpha value of the navigation bar

后端 未结 9 1689
误落风尘
误落风尘 2020-12-08 05:55

Is this possible?

I want to change the alpha value of the navigation bar in my view controller (in an animation), but if I do self.navigationController.navigat

9条回答
  •  萌比男神i
    2020-12-08 06:13

    Swift3

    var navAlpha = // Your appropriate calculation   
    self.navigationController!.navigationBar.backgroundColor =  UIColor.red.withAlphaComponent(navAlpha)
    

提交回复
热议问题