将 UIButton 放在全屏 UIWebView 上以在 UIWebView 加载失败时关闭它

发布于 2024-12-20 20:58:38 字数 185 浏览 1 评论 0原文

我的 iOS 应用程序中有插页式全屏广告。我无法控制广告的 HTML 代码。我不想修改广告网络提供的广告代码。 有时,由于网络问题,广告无法加载。 没有办法关闭兴趣。之后应用程序将无法使用。

我希望将本机关闭 UIButton 放置在 UIWebView 上。 我不使用 IB,我必须以编程方式制作这样的按钮。

怎么做呢?

I have interstitial fullscreen ad in my iOS app. I do not have control on HTML code for ad. I do not wish to modify ads code provided by ad network.
Sometimes ad is not loading due to network problems.
There is no way to close interestitial. App is unusable after that.

I wish to place native close UIButton over UIWebView.
I do not use IB, I have to make such button programatically.

How to do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一身骄傲 2024-12-27 20:58:38

例如,

UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[button addTarget:self 
           action:@selector(closeAd:)
 forControlEvents:UIControlEventTouchUpInside];
[button setTitle:@"Close" forState:UIControlStateNormal];
button.frame = CGRectMake(80.0, 210.0, 160.0, 40.0);
[view addSubview:button];

然后在方法中放入您喜欢的任何代码

-(void)closeAd:(id)sender;

For example,

UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[button addTarget:self 
           action:@selector(closeAd:)
 forControlEvents:UIControlEventTouchUpInside];
[button setTitle:@"Close" forState:UIControlStateNormal];
button.frame = CGRectMake(80.0, 210.0, 160.0, 40.0);
[view addSubview:button];

Then put whatever code you like in the method

-(void)closeAd:(id)sender;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文