3

我正在编写一个 iOS 扩展,该扩展NEPacketTunnelProvider在 iOS 9 中发布的 NetworkExtension 框架中进行扩展。我遇到了这样一种情况,即一旦使用的内存达到 6MB,iOS 就会终止扩展。

在常规的 iOS 应用程序中,有两种方法可以检测内存警告并对其进行处理。通过[UIApplicationDelegate applicationDidReceiveMemoryWarning:(UIApplication*)app][UIViewController didReceiveMemoryWarning]

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

4

2 回答 2

3

ozgur 的回答不起作用。UIApplicationDidReceiveMemeoryWarningNotification 是一个 UIKit 事件,我还没有找到从扩展中访问它的方法。要走的路是这些选项中的最后一个: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()
}
于 2020-10-19T20:11:24.807 回答
0

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

NSNotificationCenter.defaultCenter().addObserverForName(UIApplicationDidReceiveMemoryWarningNotification,
  object: nil, queue: .mainQueue()) { notification in
    print("Memory warning received")
}
于 2015-12-08T05:35:26.427 回答