起步软件技术论坛
搜索
 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 2164|回复: 0

[分享] ios 全屏顶部重合

[复制链接]

13

主题

41

帖子

161

积分

初级会员

Rank: 2

积分
161
QQ
发表于 2017-11-13 13:20:47 | 显示全部楼层 |阅读模式
用的是外部url加载的,顶部会重合,/Volumes/kuozhan/download/WeX5_V3.7-mac.tar/model/Native/templates/advanced/platforms/ios/CordovaLib/Classes/Public/CDVViewController.m


修改2个方法



- (void)viewWillAppearBOOL)animated
{
  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];
}

- (void)viewWillDisappearBOOL)animated
{
    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 viewWillDisappear:animated];
}

但是iphoneX好像显示有问题,其他都能顶部不重合
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|X3技术论坛|Justep Inc.    

GMT+8, 2025-3-12 12:41 , Processed in 0.052269 second(s), 23 queries .

Powered by Discuz! X3.4

© 2001-2013 Comsenz Inc.

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