我需要在cocos2D游戏中显示webview。我用过这段代码。但它没有显示关闭按钮,如何启用关闭按钮?这是我想要的屏幕:
使用的代码:
CGRect webFrame = [[UIScreen mainScreen] applicationFrame];
UIWebView* myWebView = [[[UIWebView alloc] initWithFrame:webFrame] autorelease];
myWebView.backgroundColor = [UIColor whiteColor];
myWebView.scalesPageToFit = YES;
myWebView.autoresizingMask = (UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight);
myWebView.delegate = self;
[self.navController.view addSubview:myWebView];
[myWebView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://biggooseegg.com/moregamesscreen"]]];
其他一些疑问:我如何获得此网页视图的圆形边框?
答案 0 :(得分:1)
关闭按钮不是UIWebView的一部分,您必须自己添加它。
通过在UIWebView后面显示所述圆角背景图像,可以实现圆角。您可以使用CCSprite。然后使Web视图适合背景图像。