在storyboard創建了navigationController ,現在要刪除它其中的半透明選項。
在appdelegate.m中:
[[UINavigationBar appearance] setBarTintColor:[UIColor colorWithRed:52.0/255 green:152.0/255 blue:219.0/255 alpha:1]];
[[UINavigationBar appearance] setTintColor:[UIColor whiteColor]];
[[UINavigationBar appearance] setTranslucent:NO];
結果報出個錯誤然後我的應用就崩潰了。
我搜索了很多問題也沒找到解決方法,請高手幫忙解決,謝謝。
將這段代碼添加到第一出現視圖控制器的viewDidLoad中
self.navigationController.navigationBar.tintColor = [UIColor whiteColor];
self.navigationController.navigationBar.barStyle = UIBarStyleBlackOpaque;