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];
}