如果我想在启动时更改活动选项卡,我曾经使用过类似tabBarController.selectedIndex = 3
的条件,例如我收到推送通知并启动该特定视图。
但是现在我要显示的视图是例如第三个选项卡,并且在该视图(即 a UITableView
)内我想选择特定的部分和单元格索引。
如果我提前知道这个索引值,我可以以编程方式午餐这个视图吗?
谢谢
如果我想在启动时更改活动选项卡,我曾经使用过类似tabBarController.selectedIndex = 3
的条件,例如我收到推送通知并启动该特定视图。
但是现在我要显示的视图是例如第三个选项卡,并且在该视图(即 a UITableView
)内我想选择特定的部分和单元格索引。
如果我提前知道这个索引值,我可以以编程方式午餐这个视图吗?
谢谢
要选择一个单元格,您需要:
-(void)viewDidLoad:(BOOL)animated {
// assuming you had the table view wired to IBOutlet myTableView
// and that you wanted to select the first item in the first section
[myTableView selectRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] animated:NO scrollPosition:0];
}