LoginSignup
0
0

More than 5 years have passed since last update.

UIPageViewControllerの謎の空白

Posted at

PageViewControllerを使って画面を作っていた時、画面の下に謎の白い空白が表示されていたので、なんでだろうと、StoryboardのPropertyをいじっていたのですが、どうやっても解決できず困っていました。

PageViewControllerの上に乗っけているViewがおかしいのかと、PageViewControllerのviewの背景色を変えて見たところ、○がみえるじゃありませんか。

UIPageControll.png

そう、背景色が白で気づかなかっただけで、UIPageControllが表示されていたのです。今回はデザイン上不要なので、下記のコードで対応しました。ドキュメントにはないのですが、間違っていたら教えてください。

- (NSInteger)presentationIndexForPageViewController:(UIPageViewController *)pageViewController
{
    return -1;
}

SafeAreaのせいじゃないかとか色々無駄に時間を使うことに。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0