我想將操作設置爲UITabBarController
上的特定tab
。我怎樣才能做到這一點? 見下面我的代碼: 代碼爲UITabBarController將操作設置爲特定選項卡
@interface AccountTabViewController : UIViewController <UITabBarControllerDelegate, UITabBarDelegate>
{
IBOutlet UITabBarController *tabController;
IBOutlet UITabBar *tabBar;
}
- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController
{
if(tabBarController.selectedIndex == 0)
{
[self dismissModalViewControllerAnimated:YES];
}
}
更新它從未進入方法!請幫忙。
由於某種原因,它沒有進入該方法! – HardCode
請確保您的定義具有如下所示的:@interface iPhoneHomeViewController:UIViewController {}'。你必須使用委託方法將UITabBar/UITabBarController的委託屬性設置爲類。 –
chown
我用代碼更新了問題,沒有工作! – HardCode