这是在CDVViewController.m中仅基于其显示内容编写的代码。 我是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];
}
答案 0 :(得分:1)
像您这样的声音没有包含启动情节提要(或所有预期大小的启动图像)。将其中之一添加到您的项目中,就可以了。