我正在尝试在我的 ios 7 应用程序上使用模糊效果。我使用了UITabBar
模糊技巧,它只在模拟器上运行良好,但在真正的 ios7 设备上运行良好。我正在使用已经在使用 ios 7 的 iPad 3。
我忘了什么吗?我需要它在 ios 7 设备上工作。
在构建设置中,我的配置
- 基础 SDK:iOS 7.0
- 部署目标:iOS 6.0
这是来源:
if (![catlistView viewWithTag:23] && [[[UIDevice currentDevice] systemVersion] floatValue] >= 7.) {
categoryListBackground.backgroundColor = [UIColor clearColor];
UIToolbar* bgToolbar = [[UIToolbar alloc] initWithFrame:categoryListBackground.frame];
bgToolbar.barStyle = UIBarStyleDefault;
bgToolbar.tag = 23;
bgToolbar.barTintColor = [UIColor colorWithRed:240./255. green:243./255. blue:243./255. alpha:0.9];
[catlistView insertSubview:bgToolbar atIndex:0];
}