我需要在 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"]]];
其他一些疑问:我怎样才能得到这个网页视图的圆形边框?
这是我未完成的示例。