iOS 7导航栏背景模糊效果在iPhone4中不起作用

iOS 7导航栏背景模糊效果在iPhone4中不起作用,ios,ios7,Ios,Ios7,在iPhone4中,导航栏的默认iOS7半透明/模糊效果不起作用。我为iOS7主题效果使用了以下代码 self.edgesForExtendedLayout = UIRectEdgeAll; self.automaticallyAdjustsScrollViewInsets = YES; self.extendedLayoutIncludesOpaqueBars = NO; [[UINavigationBar appearance] setTintColor:[UIColor colorWit

在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也没有这种效果。而在iPhone5和其他设备中,苹果商店、Itunes等应用程序都有默认的iOS 7主题效果


在iPhone4、iOS 7中有没有办法实现这种特殊的UI效果。还有你的想法……

出于性能原因,iPhone4删除了此功能。如果你确实需要此功能,请查看Github,以了解是否可以在其他设备上使用


请记住,苹果删除这项功能是有原因的,最好还是不使用它吧

试试这个。如果它不起作用,请告诉我,我会给出另一个解决方案

 self.navigationBar.translucent = YES;

是的,我从AppStore、Itunes等应用程序中了解到iPhone4中没有这一功能。但我的问题是,有没有一种方法可以通过任何定制技术来实现这种ui效果。