如何在 iOS 应用扩展中检测内存警告
How to detect memory warnings in iOS App Extension
我正在编写一个 iOS 扩展,它在 iOS 9 发布的 NetworkExtension 框架中扩展 NEPacketTunnelProvider
。我 运行 处于 iOS 在使用了 6MB 内存后终止扩展。
在常规 iOS 应用程序中,有两种方法可以检测内存警告并对其采取措施。通过 [UIApplicationDelegate applicationDidReceiveMemoryWarning:(UIApplication*)app]
或 [UIViewController didReceiveMemoryWarning]
是否有类似的方法来检测扩展中的内存警告?我已经上下搜索了 iOS 扩展文档,但到目前为止还是空的。
我对扩展 API 不是很熟悉,但我的基本直觉是,您可以从 class 中将您的任何对象注册为 UIApplicationDidReceiveMemoryWarningNotification
的观察者:
NSNotificationCenter.defaultCenter().addObserverForName(UIApplicationDidReceiveMemoryWarningNotification,
object: nil, queue: .mainQueue()) { notification in
print("Memory warning received")
}
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()
}
我正在编写一个 iOS 扩展,它在 iOS 9 发布的 NetworkExtension 框架中扩展 NEPacketTunnelProvider
。我 运行 处于 iOS 在使用了 6MB 内存后终止扩展。
在常规 iOS 应用程序中,有两种方法可以检测内存警告并对其采取措施。通过 [UIApplicationDelegate applicationDidReceiveMemoryWarning:(UIApplication*)app]
或 [UIViewController didReceiveMemoryWarning]
是否有类似的方法来检测扩展中的内存警告?我已经上下搜索了 iOS 扩展文档,但到目前为止还是空的。
我对扩展 API 不是很熟悉,但我的基本直觉是,您可以从 class 中将您的任何对象注册为 UIApplicationDidReceiveMemoryWarningNotification
的观察者:
NSNotificationCenter.defaultCenter().addObserverForName(UIApplicationDidReceiveMemoryWarningNotification,
object: nil, queue: .mainQueue()) { notification in
print("Memory warning received")
}
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()
}