我无法更改我的 UITabBar 的索引。我正在尝试从 UITabBarController 子类中更改它。这就是我正在尝试的:
[self.tabBarController setSelectedIndex:1];
这就是我的 .h 的样子
#import <UIKit/UIKit.h>
@interface CustomTab : UITabBarController <UITabBarControllerDelegate>{
IBOutlet CustomTab *bar;
}
@end
我正在尝试使用 IBAction 设置索引,正在调用该方法,但索引没有改变。有任何想法吗?