が入っmainViewController
てcontainer view
います。theMainViewController
からアクセスしようとしていますcontainer view
。
これが私のコードです:
self.theMainViewController = (theMainViewController *)self.parentViewController;
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:idx inSection:0];
[self.theMainViewController .tableView selectRowAtIndexPath:indexPath animated:YES scrollPosition:UITableViewScrollPositionBottom];
これはうまくいきません。私がそれを作るとき、値self.theMainViewController
を与えます。次に置き換えました:nil
nslog
self.parentViewController
に:
self presentingViewController
そして、それは私に同じ結果をもたらしました。クラスmainViewController
からにアクセスするにはどうすればよいですか?container view's
アップデート
これが私のセットアップです: UIViewController内の静的テーブルビュー[Xcode 5] (画像を追加できないため、その回答に投稿された画像は私のセットアップと同じです。)