ページングの方向に関連する間違いがあります。iBooks などのアプリケーションを開発していますが、これは左から右へのページングの方向をサポートする必要があります。このアプリケーションは、アラビア語の本を読むためのものです。
を使用しPrivate API(CAFilter)
ましたが、アプリケーションはアプリストアの審査に合格していません。
方向のパラメーターを作成pageViewController
して変更しました。アプリケーションを次のように書き直します
UIPageViewController."direction:UIPageViewControllerNavigationDirectionReverse"
pageViewController = [[UIPageViewController alloc] initWithTransitionStyle:UIPageViewControllerTransitionStylePageCurl navigationOrientation:UIPageViewControllerNavigationOrientationHorizontal options:nil];
[pageViewController setViewControllers:controllers direction:UIPageViewControllerNavigationDirectionReverse animated:NO completion:nil];
方向性が変わったね。しかし、私の本はまだ右から左にページされています. なんで?