如何在iOS App Extension中检测内存警告

时间:2015-12-08 04:31:20

标签: ios didreceivememorywarning ios-extensions networkextension

我在iOS 9中发布的NetworkExtension框架中编写了一个扩展NEPacketTunnelProvider的iOS扩展程序。我遇到的情况是,一旦达到6MB内存,iOS就会终止扩展。

在常规iOS应用中,有两种方法可以检测内存警告并对其执行某些操作。通过[UIApplicationDelegate applicationDidReceiveMemoryWarning:(UIApplication*)app][UIViewController didReceiveMemoryWarning]

是否有类似的方法来检测扩展中的内存警告?我已经在iOS扩展文档中上下搜索,但到目前为止还是空了。

2 个答案:

答案 0 :(得分:2)

我对扩展API并不是很熟悉,但是我的基本预感是,您可以在该类中注册任何对象作为UIApplicationDidReceiveMemoryWarningNotification的观察者:

NSNotificationCenter.defaultCenter().addObserverForName(UIApplicationDidReceiveMemoryWarningNotification,
  object: nil, queue: .mainQueue()) { notification in
    print("Memory warning received")
}

答案 1 :(得分:0)

ozgur的答案不起作用。 UIApplicationDidReceiveMemeoryWarningNotification是一个UIKit事件,我还没有找到一种方法来从扩展中访问它。方法是these options的最后一个:DISPATCH_SOURCE_TYPE_MEMORYPRESSURE。

我在广播上载扩展程序中使用了以下代码(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()
}