简体   繁体   中英

View under translucent navigation bar?

如何使视图控制器的视图扩展为全屏,这意味着它甚至位于半透明导航栏下?

You can place your view controller under the navigation bar.

if ([viewController respondsToSelector:@selector(setEdgesForExtendedLayout:)]) {
    [viewController setEdgesForExtendedLayout:UIRectEdgeAll];
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM