我正在编写一个 iOS 扩展程序,它在 iOS 9 中发布的 NetworkExtension 框架中扩展 NEPacketTunnelProvider
。我遇到了这样一种情况,即一旦使用的内存达到 6MB,iOS 就会终止该扩展程序。
在常规的 iOS 应用程序中,有两种方法可以检测内存警告并对其进行处理。通过 [UIApplicationDelegate applicationDidReceiveMemoryWarningUIApplication*)app]
或 [UIViewController didReceiveMemoryWarning]
是否有类似的方法来检测扩展程序中的内存警告?我搜索了 iOS 扩展文档,但到目前为止都是空的。
ozgur 的回答不起作用。 UIApplicationDidReceiveMemeoryWarningNotification 是一个 UIKit 事件,我还没有找到从扩展中访问它的方法。要走的路是these options的最后一条路ISPATCH_SOURCE_TYPE_MEMORYPRESSURE。
我在广播上传扩展中使用了以下代码 (Swift),并通过断点确认它在扩展失败之前的内存事件期间被调用。
let source = DispatchSource.makeMemoryPressureSource(eventMask: .all, queue: nil)
let q = DispatchQueue.init(label: "test")
q.async {
source.setEventHandler {
let eventispatchSource.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()
}
关于ios - 如何检测 iOS App Extension 中的内存警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34148041/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |