问题
我的应用程序似乎布局正确,但我无法实现 iOS 7 著名的模糊半透明效果。我的看起来不透明。
所需效果
我正在尝试获得更明显的模糊效果,例如 Apple 的 Trailers 应用程序:
半透明
在我的 UINavigationController 子类中,我将导航栏设置为半透明:
- (id)initWithRootViewController:(UIViewController *)rootViewController
{
if (self = [super initWithRootViewController:rootViewController]) {
self.navigationBar.translucent = YES;
}
return self;
}
色调颜色
在我的 UIApplicationDelegate 子类中,我设置了导航栏的色调。我发现色调颜色的 alpha 没有任何区别。也就是说,使用 0.1 的 alpha 不会导致条变得更加半透明。
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[[UINavigationBar appearance] setTintColor:[UIColor greenColor]];
}
边缘
在我的内容视图控制器中,我将边缘设置为,UIRectEdgeNone
这样顶部就不会被导航栏截断。如果我使用 default UIRectEdgeAll
,导航栏将永久覆盖我的内容顶部。就算我忍受着这种异常,UIRectEdgeAll
依然无法启用半透明效果。
- (void) viewDidLoad
{
[super viewDidLoad];
self.edgesForExtendedLayout = UIRectEdgeNone;
}
编辑:试验边缘
@rmaddy 在评论中指出的广告,问题可能出在 edgeForExtendedLayout 上。我找到了一个综合教程 edgeForExtendedLayout并尝试实现它:
- (void) viewDidLoad
{
[super viewDidLoad];
self.edgesForExtendedLayout = UIRectEdgeAll;
self.automaticallyAdjustsScrollViewInsets = YES;
self.extendedLayoutIncludesOpaqueBars = NO;
}
那没起效。首先,没有半透明效果。其次,我的内容的顶部被砍掉了。在以下带有上述代码的示例页面中,头像最初被导航栏覆盖,很难滚动到。你可以拉下来看到头像的顶部,但是当你松开时,页面会自动弹回来,头像会再次被遮挡。