Make navigation bar transparent regarding below image in iOS 8.1

前端 未结 4 1207
后悔当初
后悔当初 2020-12-16 04:32

I try to set my navigation bar transparent regarding a image below this, something like the following image :

\"

4条回答
  •  悲&欢浪女
    2020-12-16 05:12

    Have you tried setting the navigationBar's alpha property? In your root view controller to the navigation controller...

    [self.navigationController.navigationBar setBackgroundColor:[UIColor greenColor]];
    [self.navigationController.navigationBar setAlpha:0.3f];
    

提交回复
热议问题