私はUIPageViewControllerを実装していますが、初期化後にデバイスを回転させてもSpineLocationを正しく設定しても、すべて正常に動作しますが、
UIPageViewController をインスタンス化すると、デバイスが横向きの場合、1 ページ (UIPageViewControllerSpineLocationMin) だけで UIPageViewController が作成されます...
読み込みませんm trying to instantiate it using UIPageViewControllerSpineLocationMid just like the code below (and like developer.apple recommends) BUT when i do it... the UIPageViewController doesn
...
NSDictionary * options = [NSDictionary dictionaryWithObject:
[NSNumber numberWithInt:UIPageViewControllerSpineLocationMid]
forKey:UIPageViewControllerOptionSpineLocationKey];
UIPageViewController *pageViewController = [[UIPageViewController alloc]
initWithTransitionStyle:UIPageViewControllerTransitionStylePageCurl
navigationOrientation:UIPageViewControllerNavigationOrientationHorizontal
options:options]
何か問題がありますか?ありがとう!