我有一個UITableView,我想在單擊UITableView中的單元時切換到另一個選項卡。如何以編程方式切換到UITabBarController中的另一個選項卡?
我已經試過了,但它不工作
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
MainView *mainView = [[MainView alloc] initWithNibName:@"MainView" bundle:nil];
mainView.tabBarController.selectedIndex = 3;
}