こんなエラーが出てしまった。
[oPageView setViewControllers:nextPage direction:UIPageViewControllerNavigationDirectionForward animated:NO completion:^(BOOL finished) {
[oTableView scrollToRowAtIndexPath:iPagePath atScrollPosition:UITableViewScrollPositionTop animated:YES];
}];
Blockの中にインスタント変数を参照するとワーニングになります。
__block UITableView *tablViewself = oTableView;
[oPageView setViewControllers:nextPage direction:UIPageViewControllerNavigationDirectionForward animated:NO completion:^(BOOL finished) {
[tablViewself scrollToRowAtIndexPath:iPagePath atScrollPosition:UITableViewScrollPositionTop animated:YES];
}];
こんな感じで、変数を外だしにするとOKです。