我在所有模拟器中的屏幕顶部和底部都出现了一个大的黑条

时间:2019-06-12 05:44:44

标签: ios objective-c cordova uiwebview uiwindow

enter image description here这是在CDVViewController.m中仅基于其显示内容编写的代码。 In in the image iphone screen scrollview moving under the green color view if i scroll up the view ..how to fix this as per iphone screen我是Cordova的新手,有人可以帮助我吗?

 -(void)createView
    {CGRect webViewBounds = self.view.bounds;

        webViewBounds.origin = self.view.bounds.origin;

        self.webView = [self newCordovaViewWithFrame:webViewBounds];
        self.webView.autoresizingMask = (UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight);

        [self.view addSubview:self.webView];
        [self.view sendSubviewToBack:self.webView];
    }
    -(UIWebView*)newCordovaViewWithFrame:(CGRect)bounds
    {
        return [[UIWebView alloc] initWithFrame:bounds];
    }

1 个答案:

答案 0 :(得分:1)

像您这样的声音没有包含启动情节提要(或所有预期大小的启动图像)。将其中之一添加到您的项目中,就可以了。