2
我希望每個人都可以explane我如何做到這一點:加入UITabBarItems到UITabBar
我有一個的TabBar和兩個TabBarItems,我怎麼能attatch該項目的TabBar。 我不是通過IB來做這件事,因爲TabBar只適用於屏幕,因爲項目應該在左側。
這就是我如何建立他們:
tabBarController = [[UITabBarController alloc] initWithNibName:nil bundle:nil];
tabBarController2 = [[UITabBarController alloc] initWithNibName:nil bundle:nil];
tabBarController.tabBar.frame = CGRectMake(0, 974, 384, 50);
tabBarController2.tabBar.frame = CGRectMake(384, 974, 384, 50);
UITabBarItem *tbi1 = [[UITabBarItem alloc] initWithTabBarSystemItem:UITabBarSystemItemMostViewed tag:0];
UITabBarItem *tbi2 = [[UITabBarItem alloc] initWithTabBarSystemItem:UITabBarSystemItemMostViewed tag:1];
我已經試過,但它沒有爲我工作,但這是我的第二個TabBar造成的。 – Frank 2010-12-01 18:04:49