iOS開発でUIPageViewControllerの高さがずれる問題

iOS8以降の問題?
あまり情報が見当たらない



UIPageViewControllerのviewDidLoadあたりでUIViewController.automaticallyAdjustsScrollViewInsetsをFalseに設定する



Swift



self.automaticallyAdjustsScrollViewInsets = false



Objective-C



self.automaticallyAdjustsScrollViewInsets = NO;

2016年8月22日月曜日