【发布时间】:2014-07-17 09:19:20
【问题描述】:
在 iPhone4 中,导航栏的默认 iOS7 半透明/模糊效果不起作用。 iOS7主题效果我使用了如下代码。
self.edgesForExtendedLayout = UIRectEdgeAll;
self.automaticallyAdjustsScrollViewInsets = YES;
self.extendedLayoutIncludesOpaqueBars = NO;
[[UINavigationBar appearance] setTintColor:[UIColor colorWithWhite:0.0 alpha:0.5]];
注意:在 iPhone4 中,iOS 7.1.2 AppStore 也没有这个效果。而在 iPhone 5 和其他设备中,其应用程序(如 AppStore、Itunes...等)具有默认的 iOS 7 主题效果。
有什么方法可以在 iPhone 4 、iOS 7 中实现这种特殊的 UI 效果。还有你的想法……
【问题讨论】: