アイコンに画像を挿入するには、タブバー項目の画像をカスタマイズする必要があります。どうすればよいですか? 友人から、新しい xib を作成し、それを使用して新しいタブバー項目をカスタマイズする必要があると聞きました。本当ですか?
どうもありがとう!
アイコンに画像を挿入するには、タブバー項目の画像をカスタマイズする必要があります。どうすればよいですか? 友人から、新しい xib を作成し、それを使用して新しいタブバー項目をカスタマイズする必要があると聞きました。本当ですか?
どうもありがとう!
以下のメソッドを入れるだけです
appdelegate.m
ファイル
- (void)customizeAppearance
{
// Costomise UITabBar
// Note you can also specify “finished” and “unfinished” images if you wish to modify the manner in which the selected & unselected images appear.
UIImage *tabBackground = [[UIImage imageNamed:@"tab_bg"]resizableImageWithCapInsets:UIEdgeInsetsMake(0, 0, 0, 0)];
[[UITabBar appearance] setBackgroundImage:tabBackground];
[[UITabBar appearance] setSelectionIndicatorImage:[UIImage imageNamed:@"tab_select_indicator"]];
}
これはあなたを助けるかもしれませ ん このサイトでもっと多くを見つけてください