1

iOSのプログラムでUITabBarItemを追加したいと思います。

Interface Builderでは、検索、お気に入り、最近のタブなどの識別子を使用して簡単に選択できます。

これらの識別子タイプをプログラムで追加するにはどうすればよいですか?

4

2 に答える 2

4

UIViewControllerのプロパティとして追加しますか?あなたはUITabBarItem

UITabBarItem *localTabBarItem = [[UITabBarItem alloc]                     initWithTitle:@"Date" image:clockIcon tag:0];

次に、UIViewControllerのプロパティを設定します

[viewController setTabBarItem:localTabBarItem];

これがTabBar画像の巨大なパックですhttp://www.axialis.com/objects/ip_icon_09.shtml

于 2012-04-20T17:26:11.310 に答える
3
UITabBarItem *barItem = [[UITabBarItem] alloc] initWithTabBarSystemItem:UITabBarSystemItemMore tag:0];
self.tabBarItem = [barItem autorelease]; //of not using ARC

事前定義されたシステムバーの項目は次のとおりです。

UITabBarSystemItemMore,
UITabBarSystemItemFavorites,
UITabBarSystemItemFeatured,
UITabBarSystemItemTopRated,
UITabBarSystemItemRecents,
UITabBarSystemItemContacts,
UITabBarSystemItemHistory,
UITabBarSystemItemBookmarks,
UITabBarSystemItemSearch,
UITabBarSystemItemDownloads,
UITabBarSystemItemMostRecent,
UITabBarSystemItemMostViewed
于 2012-04-20T17:42:15.747 に答える