iOS7 / 8半透明导航栏右上角的黑色

前端之家收集整理的这篇文章主要介绍了iOS7 / 8半透明导航栏右上角的黑色前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
iOS8上/ iphone

设置时

navigationbar.translucent = yes;

如果还设置

blueVC.hidesBottomBarWhenPushed = yes;

推ViewController,导航栏右上角显示黑色.

检测结果:

默认情况下,黑色区域是UIWindow.我将UIWindow背景颜色更改为白色并修复了问题.但这只是看起来更好,并没有完全解决.

=======================

iOS7 strange animation when using hidesBottomBarWhenPushed

self.tabBarController.tabBar.hidden=YES;

这种方法会导致推进进程tabbar消失.它没有解决问题.

解决方法

试试这段代码
self.navigationController.view.backgroundColor = [UIColor whiteColor];

我认为它类似于这篇文章Dark shadow on navigation bar during segue transition after upgrading to Xcode 5.1 and iOS 7.1

原文链接:https://www.f2er.com/iOS/328464.html

猜你在找的iOS相关文章