导航栏透明

Posted by Onery on January 10, 2015

#设置导航栏透明

在开发过程中,经常会遇到让导航栏透明的需求,下面告诉大家如何设置导航栏透明

//导航栏透明
[self.navigationController.navigationBar setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault];
    self.navigationController.navigationBar.shadowImage = [UIImage new];
    self.navigationController.navigationBar.translucent = YES;