vue app 兼容性(兼容性)

NSAppTransportSecurity

  NSAllowsArbitraryLoads
  

LSApplicationQueriesSchemes

  iosamap

NSCameraUsageDescription
cameraDesciption
NSPhotoLibraryUsageDescription
photoLibraryDesciption

info.plist 文件的修改 给拍照权限

  • (void)viewWillAppear:(BOOL)animated
    {
    // View defaults to full size. If you want to customize the view’s size, or its subviews (e.g. webView),
    // you can do so here.
    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)viewWillDisappear:(BOOL)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];
}

MainViewController.m 取消 手机状态栏 被覆盖


打包生成后的项目下的 config.xml 禁止页面滚动

你可能感兴趣的:(vue app 兼容性(兼容性))