gpt4 book ai didi

iOS 13 : Using the new NEHotspotConfiguration. init(ssidPrefix: String) 似乎不起作用

转载 作者:行者123 更新时间:2023-11-29 13:53:48 25 4
gpt4 key购买 nike

我目前正在运行 Xcode 11.0 和 iOS 13.1(测试版)。我正在试验 iOS 13 中新添加的功能,即能够连接到只有前缀已知的 Wifi 热点: Apple Docs

这非常适合 headless 配件的 Wifi 设置,因为您无需要求用户切换到操作系统设置即可连接到配件的 wifi。

但不幸的是我不能让它按预期工作。

我的代码(Swift 5):

if #available(iOS 13, *) {
// The accessory's wifi name starts with "device-", followed by 3 digit number, e.g. "device-012"
let configuration = NEHotspotConfiguration.init(ssidPrefix: "device-")
configuration.joinOnce = true

NEHotspotConfigurationManager.shared.apply(configuration) { (error) in
if error != nil {
if error?.localizedDescription == "already associated."
{
print("Connected")
}
else {
print("No Connected")
}
}
else {
print("Connected")
}
}
}

使用全名(例如“device-012”),它有效:

let configuration = NEHotspotConfiguration.init(ssidPrefix: "device-012")

我错过了什么吗?前缀字符串可能需要一些通配符模式吗?

谢谢,亨利

最佳答案

不设置 configuration.joinOnce = true 或将其设置为 false 使其工作。

错误报告已提交给 Apple。

关于iOS 13 : Using the new NEHotspotConfiguration. init(ssidPrefix: String) 似乎不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58029300/

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