我在iOS 9中发布的NetworkExtension框架中编写了一个扩展NEPacketTunnelProvider
的iOS扩展程序。我遇到的情况是,一旦达到6MB内存,iOS就会终止扩展。
在常规iOS应用中,有两种方法可以检测内存警告并对其执行某些操作。通过[UIApplicationDelegate applicationDidReceiveMemoryWarning:(UIApplication*)app]
或[UIViewController didReceiveMemoryWarning]
是否有类似的方法来检测扩展中的内存警告?我已经在iOS扩展文档中上下搜索,但到目前为止还是空了。
答案 0 :(得分:2)
我对扩展API并不是很熟悉,但是我的基本预感是,您可以在该类中注册任何对象作为UIApplicationDidReceiveMemoryWarningNotification
的观察者:
NSNotificationCenter.defaultCenter().addObserverForName(UIApplicationDidReceiveMemoryWarningNotification,
object: nil, queue: .mainQueue()) { notification in
print("Memory warning received")
}
答案 1 :(得分:0)
我在广播上载扩展程序中使用了以下代码(Swift),并已通过断点确认在扩展程序发出信号之前的内存事件中调用了它。
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()
}