こんにちは私はカスタムタブバーで開発しています、そして私の展開ターゲットはiOS4です
iOS5ではすべてがうまくいきます。
iOS4ではうまくいきません
コードスニペット
UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"tabBack.png"]];
if ([[[UIDevice currentDevice] systemVersion] floatValue] > 4.9) {
//iOS 5
[self.tabBarController.tabBar insertSubview:imageView atIndex:1];
self.tabBarController.tabBar.selectionIndicatorImage =[UIImage imageNamed:@"red_Back.png"];
[[UITabBar appearance] setSelectedImageTintColor:[UIColor whiteColor]];
}
else {
//iOS 4
[self.tabBarController.tabBar insertSubview:imageView atIndex:0];
}
Iamはいくつかのコードを試しました
1) UITabBarItemにカスタム選択された画像を使用する方法はありますか?
2) iPhoneアプリ用のカスタムUITabBarを作成する本当にクールな方法ですか?
これらのコードサンプルには影響しません
私はたくさん試しましたが、iOS4でこのタスクを実行する方法はありますか?
ショートカットはありますか?
チュートリアルまたはサンプルpls
前もって感謝します