gpt4 book ai didi

ios - 在 UIWebView 中启用关闭按钮

转载 作者:行者123 更新时间:2023-11-29 13:31:43 27 4
gpt4 key购买 nike

我需要在cocos2D游戏中显示webview。我使用了这段代码。但是它不显示关闭按钮,我怎样才能启用关闭按钮?这是我想要的屏幕:

enter image description here

使用的代码:

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"]]];

其他一些疑惑:如何为这个 web view 设置圆角边框?

Here is my sample那还没有完成。

最佳答案

关闭按钮不是 UIWebView 的一部分,您必须自己添加。

可以通过在 UIWebView 后面显示所述圆角背景图像来实现圆角。您可以为此使用 CCSprite。然后使 WebView 适合背景图像。

关于ios - 在 UIWebView 中启用关闭按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11693343/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com