我想添加一個UIButton到UITabBar我用下面的代碼iPad應用:添加的UIButton到UITabBar
TabBarAppDelegate *delegate = (TabBarAppDelegate *)[[UIApplication sharedApplication] delegate];
UITabBarController *tabbar = (UITabBarController *)delegate.window.rootViewController;
UIButton *b = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 20, 20)];
[tabbar.view addSubview:b];
tabbar
是確定並引用到正確的TabBar項目(比如,我可以切換活動標籤代碼如下:[tabbar setSelectedIndex:1];
)。
此代碼由其他一些自定義按鈕調用。雖然有日誌中沒有錯誤,按鍵上不使用TabBar :(
表明我在做什麼錯的,什麼是添加的UIButton到UITabBar正確的方式:)下面是一個例子:
http://gyazo.com/99fc0df0ed47dd6be91b558161cab4f9.png
在此先感謝!
編輯:好吧,如果我堅持使用UIToolbar選項,那麼在視圖之間切換的正確方法是什麼?創建一個ViewContollers的NSArray並將相應的ViewController的視圖加載到活動的View?
爲什麼要添加一個按鈕?你想添加一個新標籤嗎? – Saphrosit
不,我真的需要添加一個自定義的UIButton。這就是我的客戶想要的...這個按鈕不是TabBarItem,它只是一個tabbar內的按鈕:http://gyazo.com/99fc0df0ed47dd6be91b558161cab4f9.png – WASD42
@ WASD42:這看起來像我'UIToolBar'不是'UITabBar ',並且您可以輕鬆地將按鈕添加到前者。 – PengOne