我从情节提要创建了一个导航控制器,现在我正在尝试删除它的半透明选项
我已经把它放在了我的 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];
但这会使我的应用程序因无意义的错误而崩溃,所以我不确定这是否是正确的方法。
我发现了这个类似的问题,但没有解决我的问题: Navigation Controller Transparent Bar Style is not working
但我不知道该怎么做,因为我没有变量 navController,因为我从情节提要创建了我的 navigationController。如何以编程方式调用情节提要导航控制器并执行类似操作?
谢谢