UIPageViewControllerの謎の空白
PageViewControllerを使って画面を作っていた時、画面の下に謎の白い空白が表示されていたので、なんでだろうと、StoryboardのPropertyをいじっていたのですが、どうやっても解決できず困っていました。
PageViewControllerの上に乗っけているViewがおかしいのかと、PageViewControllerのviewの背景色を変えて見たところ、○がみえるじゃありませんか。
そう、背景色が白で気づかなかっただけで、UIPageControllが表示されていたのです。今回はデザイン上不要なので、下記のコードで対応しました。ドキュメントにはないのですが、間違っていたら教えてください。
- (NSInteger)presentationIndexForPageViewController:(UIPageViewController *)pageViewController
{
return -1;
}
SafeAreaのせいじゃないかとか色々無駄に時間を使うことに。
Author And Source
この問題について(UIPageViewControllerの謎の空白), 我々は、より多くの情報をここで見つけました https://qiita.com/nmisawa/items/10b3738206a1a49163ab著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .