0

tabBarController.selectedIndex = 3以前は、プッシュ通知を受け取ってその特定のビューを起動する場合など、条件付きの理由で起動時にアクティブなタブを変更したい場合にlike を使用していました。

しかし、今私が表示したいビューは、たとえば 3 番目のタブであり、そのビュー (これは ですUITableView) 内で、特定のセクションとセル インデックスを選択したいと考えています。

このインデックスの値が事前にわかっている場合、プログラムでこのビューを起動できますか?

ありがとう

4

1 に答える 1

0

セルを選択するには、次のものが必要です。

-(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];
}
于 2012-12-18T23:36:11.533 に答える