[Objective-C]iPhone XでUINavigationBarに隙間ができる
前に対策したはずだったのですが。
NavigationBarとStatusBarの隙間を埋める - ビギグラマーのノート
上のリンク先の対策をしても隙間が出てしまう…。
こちらを参考にしたら解決しました。
Extend the navigation bar to status bar - merocode
UINavigationBarを実装するViewControllerで以下のメソッドを実装。
- (UIBarPosition)positionForBar:(id
)bar {
return UIBarPositionTopAttached;
}
Headerファイルでプロトコルを宣言。
@interface GroupsViewController : UIViewController
UINavigationBarの実装で、delegateを自身(ViewController)に設定。
self.navBar.delegate = self;
スポンサーサイト