我在iOS8上的應用程序擴展(照片編輯擴展)工作變化iOS8上擴展導航欄顏色
我曾嘗試這些方法來更新導航欄的顏色,但沒有成功
[[UINavigationBar appearance] setBarTintColor:[UIColor yellowColor]];
[[UINavigationBar appearance] setTintColor:[UIColor blueColor]];
[[UINavigationBar appearance] setBackgroundColor:[UIColor blueColor]];
它顯示默認半透明灰色導航欄。
有誰知道如何改變iOS8上擴展導航欄的顏色的想法?
你有沒有發現這是可能的? – Gruntcakes 2016-08-17 15:01:02
還沒有。 @SausageMachine – 2016-08-18 06:17:44
調用UINavigationBar.appearance()。barTintColor可以工作並更改顏色,但不會擴展到狀態欄。 http://stackoverflow.com/questions/39000941/how-to-apply-the-navigation-bar-color-to-the-status-bar-in-an-extension – Gruntcakes 2016-08-18 14:21:29