如何为 UIWebview 做广告拦截?

发布于 2024-09-13 19:30:11 字数 127 浏览 5 评论 0原文

虽然苹果禁止了Flash,导致很多广告都被禁用了。我仍然喜欢浏览器的广告拦截功能。

我注意到 adblock 通过检查所有加载请求的 url 来做到这一点。 UIWebview 可以吗?

任何建议都很好 谢谢

Although apple banned flash which disabled a lot of ad. I still like a adblock like functionality for browser.

I noticed that adblock do so by checking all load request's url. Is that possible with UIWebview?

Any suggestions are well come
Thanks

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

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

发布评论

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

评论(1

蹲墙角沉默 2024-09-20 19:30:12

不可以

。但是,您可以 swizzle -[NSURLRequest initWithURL:cachePolicy:timeoutInterval :] 以防止从一开始就发出请求,例如:

static id (*oldMethod)(id self, SEL _cmd, NSURL* theURL, ....);

static id newMethod(id self, SEL _cmd, NSURL* theURL, ....) {
    if ([[theURL absoluteString] hasPrefix:@"http://example.com"]) {
        [self release];
        return nil;
    }
    return oldMethod(self, _cmd, theURL, cachePolicy, timeoutInterval);
}

....


Method m = class_getInstanceMethod([NSURLRequest class], 
                                  @selector(initWithURL:cachePolicy:timeoutInterval:));
oldMethod = method_setImplementation(m, newMethod);

请注意,返回 nil 通常并不安全。请求可能会存储在某些数据结构中,并且程序会崩溃。

No.

However, you can swizzle -[NSURLRequest initWithURL:cachePolicy:timeoutInterval:] to prevent the request be issued from the start, e.g.:

static id (*oldMethod)(id self, SEL _cmd, NSURL* theURL, ....);

static id newMethod(id self, SEL _cmd, NSURL* theURL, ....) {
    if ([[theURL absoluteString] hasPrefix:@"http://example.com"]) {
        [self release];
        return nil;
    }
    return oldMethod(self, _cmd, theURL, cachePolicy, timeoutInterval);
}

....


Method m = class_getInstanceMethod([NSURLRequest class], 
                                  @selector(initWithURL:cachePolicy:timeoutInterval:));
oldMethod = method_setImplementation(m, newMethod);

Note that returning nil is not safe in general. It is possible that a request will be stored in some data structure and the program will crash.

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