ios - 如何检测 iOS App Extension 中的内存警告
<p><p>我正在编写一个 iOS 扩展程序,它在 iOS 9 中发布的 NetworkExtension 框架中扩展 <code>NEPacketTunnelProvider</code>。我遇到了这样一种情况,即一旦使用的内存达到 6MB,iOS 就会终止该扩展程序。</p>
<p>在常规的 iOS 应用程序中,有两种方法可以检测内存警告并对其进行处理。通过 <code></code> 或 <code></code></p>
<p>是否有类似的方法来检测扩展程序中的内存警告?我搜索了 iOS 扩展文档,但到目前为止都是空的。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>ozgur 的回答不起作用。 UIApplicationDidReceiveMemeoryWarningNotification 是一个 UIKit 事件,我还没有找到从扩展中访问它的方法。要走的路是<a href="https://developer.apple.com/documentation/xcode/improving_your_app_s_performance/reducing_your_app_s_memory_use/responding_to_low-memory_warnings" rel="noreferrer noopener nofollow">these options</a>的最后一条路:DISPATCH_SOURCE_TYPE_MEMORYPRESSURE。</p>
<p>我在广播上传扩展中使用了以下代码 (Swift),并通过断点确认它在扩展失败之前的内存事件期间被调用。</p>
<pre><code>let source = DispatchSource.makeMemoryPressureSource(eventMask: .all, queue: nil)
let q = DispatchQueue.init(label: "test")
q.async {
source.setEventHandler {
let event:DispatchSource.MemoryPressureEvent= source.mask
print(event)
switch event {
case DispatchSource.MemoryPressureEvent.normal:
print("normal")
case DispatchSource.MemoryPressureEvent.warning:
print("warning")
case DispatchSource.MemoryPressureEvent.critical:
print("critical")
default:
break
}
}
source.resume()
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - 如何检测 iOS App Extension 中的内存警告,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/34148041/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/34148041/
</a>
</p>
页:
[1]