MUI 侧滑关闭webView相关问题

问题1: 在使用openWindowWithTitle()方法打开新窗口后无法使用侧滑关闭此窗口

测试环境: iPhone 6s plus
原因分析: 可能是HBuilder调试基座不稳定
解决方案: 删掉调试基座重新安装后就可以了


问题2: 在使用openWindow()方法打开新窗口后无法使用侧滑关闭此窗口

测试环境: iPhone 6s plus,iPhone 6s plus模拟器
原因分析: 在openWindow()中配置了stytles中的top值
解决方案: 移除掉top值就可以了

//错误代码
mui.openWindow({
  url: 'index.html',
  id: 'index.html',
  styles: {
    top: '44px'
  }
});
//正确代码
mui.openWindow({
  url: 'index.html',
  id: 'index.html'
});

你可能感兴趣的:(MUI 侧滑关闭webView相关问题)