iOSのプログラムでUITabBarItemを追加したいと思います。
Interface Builderでは、検索、お気に入り、最近のタブなどの識別子を使用して簡単に選択できます。
これらの識別子タイプをプログラムで追加するにはどうすればよいですか?
iOSのプログラムでUITabBarItemを追加したいと思います。
Interface Builderでは、検索、お気に入り、最近のタブなどの識別子を使用して簡単に選択できます。
これらの識別子タイプをプログラムで追加するにはどうすればよいですか?
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
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