How to make UINavigationBar Transparent in IOS 8?

后端 未结 6 1255
醉话见心
醉话见心 2021-01-05 14:09

I have tried a lot to make UINavigationBar transparent. But I failed making it so.The image which I set was transparent. Here is my code . Any help ? Thanks in advance.

6条回答
  •  长情又很酷
    2021-01-05 14:40

    try this

       [self.navigationController.navigationBar setBackgroundImage:[UIImage new]
                             forBarMetrics:UIBarMetricsDefault];
        self.navigationController.navigationBar.shadowImage = [UIImage new];
        self.navigationController.navigationBar.translucent = YES;
        self.navigationController.view.backgroundColor = [UIColor clearColor];
    

    I hope the above code helps.

提交回复
热议问题