ios - swift : Reloading Content Blockers list in iOS 9
<p><p>我正在尝试 IOS 9 中的一个新功能:内容拦截器(广告拦截器)
在我的应用程序中,我有 3 个我想要阻止的项目(网站)
(例如:1. abc.com
2.def.com
3. xyz.com)
对于每个项目,我都使用开关控制(ON/OFF)来让用户选择 BLOCK 或 NOT BLOCK 网站。</p>
<p>当更改开关的状态开/关时,我想重新加载文件 <strong>blockerList.json</strong>。
但我不知道该怎么做。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我找到了解决问题的方法</p>
<p>第 1 步:您需要在“我的应用”和“内容拦截器扩展”之间共享数据。 (您为“我的应用”和“内容拦截器扩展”创建“应用组”。使用 NSUserDefault 来保存和共享数据)。</p>
<p>在“我的应用”中保存数据</p>
<pre><code>private let APP_GROUPS = "group.com.xxx"
let defaults: NSUserDefaults! = NSUserDefaults(suiteName: APP_GROUPS)
if (SWITCH_1 is ON) {
idListBlocker = 1
}
if (SWITCH_2 is ON) {
idListBlocker = 2
}
defaults.setObject(idListBlocker, forKey: "idBlock")
defaults.synchronize()
</code></pre>
<p>第 2 步:当您将 SWITCH ON/OFF 的状态更改为 BLOCK/NOT BLOCK 时,您调用函数重新加载文件列表阻止内容 (blockerList.json)</p>
<pre><code>if #available(iOS 9.0, *) {
SFContentBlockerManager.reloadContentBlockerWithIdentifier("Your Bundle Identifier of Content Blocker Extension", completionHandler: nil)
}
</code></pre>
<p>步骤 3:在文件 ActionRequestHandler.swift 中,加载与用户选择的选项 SWITCH 对应的文件列表阻止内容</p>
<pre><code>private let APP_GROUPS = "group.com.xxx"
func beginRequestWithExtensionContext(context: NSExtensionContext) {
let defaults = NSUserDefaults(suiteName: APP_GROUPS)
let idBlock: Int? = defaults!.objectForKey("idBlock") as? Int
if idBlock == 1 {
let attachment = NSItemProvider(contentsOfURL: NSBundle.mainBundle().URLForResource("blockerList", withExtension: "json"))!
let item = NSExtensionItem()
item.attachments =
context.completeRequestReturningItems(, completionHandler: nil);
} else if idBlock == 2 {
let attachment = NSItemProvider(contentsOfURL: NSBundle.mainBundle().URLForResource("blockerList_1", withExtension: "json"))!
let item = NSExtensionItem()
item.attachments =
context.completeRequestReturningItems(, completionHandler: nil);
}
}
</code></pre>
<p>与用户选择的选项相对应,您创建一个文件列表阻止内容。例如:我的项目我创建了 2 个文件被阻止的内容:blockerList.json 和 blockerList_1.json。</p>
<p>这是我的解决方案,工作正常。</p></p>
<p style="font-size: 20px;">关于ios -swift: Reloading Content Blockers list in iOS 9,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/34781448/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/34781448/
</a>
</p>
页:
[1]