PhoneGap中文网

 找回密码
 立即注册

phoengap在ios7下面状态栏层叠在应用界面上如何解决

查看数: 13969 | 评论数: 3 | 收藏 1
关灯 | 提示:支持键盘翻页<-左 右->
    组图打开中,请稍候......
发布时间: 2014-3-22 19:42

正文摘要:

phoengap在ios7下面状态栏层叠在应用界面上如何解决 状态栏问题在 iOS7, 所有的应用都是全屏运行的,此时状态栏层叠在应用界面上. 导致头部的内容或者界面被覆盖: ...

回复

sww0130 发表于 2014-12-14 22:33:28

- (void)viewWillAppear:(BOOL)animated
{
    // View defaults to full size.  If you want to customize the view's size, or its subviews (e.g. webView),
    // 解决状态栏重叠
    if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7) {
        
        CGRect viewBounds = [self.webView bounds];
        
        viewBounds.origin.y = 20;
        
        viewBounds.size.height = viewBounds.size.height - 20;
        
        self.webView.frame = viewBounds;
    }
    [super viewWillAppear:animated];
}

这样也能够解决
小雪 发表于 2014-3-23 05:32:40
学习了,谢谢分享、、、
爱哭的鱼 发表于 2014-3-22 19:43:27
我是来刷分的,嘿嘿顺便学习一下
关闭

站长推荐 上一条 /1 下一条

ionic4视频教程

Archiver|手机版|小黑屋| PhoneGap中文网 ( 京ICP备13027796号-1 )  

GMT+8, 2025-1-9 02:30 , Processed in 0.066238 second(s), 34 queries .

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表