在我的应用程序中,我有一种情况,我像这样以编程方式更改 tabBarController 的选定索引
[self.tabBarController setSelectedIndex:0];
并返回到包含 UITableView' 的选项卡此时我需要对我的 tableView 进行一些操作我尝试使用 viewWillAppear 但它没有到达那里,我试图让视图委托像这样
@interface ThirdViewController : UITableViewController < UISearchBarDelegate,UINavigationControllerDelegate, UITabBarDelegate>
- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController{
它没有用
有人知道怎么做吗?