gpt4 book ai didi

ios - 如何在 iOS 13 中支持低数据模式?

转载 作者:行者123 更新时间:2023-12-04 16:08:41 28 4
gpt4 key购买 nike

iOS 13 中引入了“低数据模式”。请参阅“设置”部分 Apple's iOS 13 overview :

Low Data Mode



我找不到任何关于此的开发人员文档。

这是第三方应用程序开发人员可以选择加入的吗, as suggested by MacRumors ?或者它是否会在未连接到 Wi-Fi 时暂停后台事件, as suggested by AppleInsider ?

最佳答案

要确定 iOS 当前是否处于低数据模式,您可以使用网络库:

import Network // Put this on top of your class

let monitor = NWPathMonitor()

monitor.pathUpdateHandler = { path in

if path.isConstrained {
// Path uses an interface in Low Data Mode.
}
else if path.isExpensive {
// Path uses an interface that is considered expensive, such as Cellular or a Personal Hotspot.
}
}

monitor.start(queue: DispatchQueue.global(qos: .background))

关于ios - 如何在 iOS 13 中支持低数据模式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56886273/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com