0

アイコンに画像を挿入するには、タブバー項目の画像をカスタマイズする必要があります。どうすればよいですか? 友人から、新しい xib を作成し、それを使用して新しいタブバー項目をカスタマイズする必要があると聞きました。本当ですか?

どうもありがとう!

4

1 に答える 1

0

以下のメソッドを入れるだけです

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

}

これはあなたを助けるかもしれませ ん このサイトでもっと多くを見つけてください

于 2012-04-10T11:50:17.167 に答える