xcode – CoreBluetooth [WARNING]没有恢复标识符,但委托实现

xcode – CoreBluetooth [WARNING]没有恢复标识符,但委托实现,第1张

概述我正在使用CoreBluetooth,但我在输出中收到了此警告消息. CoreBluetooth [WARNING]没有恢复标识符,但委托实现了centralManager:willRestoreState:方法.不支持恢复! 我正在使用此代码: NSDictionary *options = [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber 我正在使用CoreBluetooth,但我在输出中收到了此警告消息.

CoreBluetooth [WARNING]没有恢复标识符,但委托实现了centralManager:willRestoreState:方法.不支持恢复!

我正在使用此代码:

NSDictionary *options = [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithBool:NO],CBCentralManagerOptionShowPowerAlertKey,nil];myCentralManager = [[CBCentralManager alloc] initWithDelegate:self queue:nil options:options];

我不知道出了什么问题.

谢谢.

解决方法 这是关于CoreBluetooth的保存/恢复可选功能,有关详细信息,请参阅 documentation的“选择状态保存和恢复”部分.

看起来正在发生的是您正在实现正确的委托方法来使用此功能,但您没有在调用中提供恢复标识符来初始化CBCentralManager.

有两种方法可以解决警告:

>如果要使用此功能,则应提供表示CBCentralManager的中央或外围管理器的字符串标识符,如下所示:

myCentralManager = [[CBCentralManager alloc] initWithDelegate:self queue:nil     options:@{ CBCentralManagerOptionRestoreIDentifIErKey:     @"myCentralManagerIDentifIEr" }];

>如果您不想使用此功能,请从您的委托中删除centralManager:willRestoreState:方法.

做任何一个应该解决你的警告.

总结

以上是内存溢出为你收集整理的xcode – CoreBluetooth [WARNING]没有恢复标识符,但委托实现全部内容,希望文章能够帮你解决xcode – CoreBluetooth [WARNING]没有恢复标识符,但委托实现所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1020212.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-23
下一篇 2022-05-23

发表评论

登录后才能评论

评论列表(0条)

保存