iOS蓝牙状态保存和恢复的DUPLICATE ISSUE -25299

我在实例化我的CBCentralManager时遇到了问题.从iOS控制台监控时,我收到“重复问题”消息(它没有显示在XCode控制台中).

我已经尝试更新队列名称和恢复密钥ID但没有成功.这是我实例化我的中央管理器的方式:

CBCentralManager *central = [[CBCentralManager alloc] initWithDelegate: self 
    queue: dispatch_queue_create("com.mydomain.myapp.scanner",NULL)
    options: @{
        CBCentralManagerOptionRestoreIdentifierKey: @"hexa-string-comes-here"
    }];

这些是我得到的错误

CKLs-iPhone-5S securityd[78] :
securityd_xpc_dictionary_handler MyApp[2571] add The operation
couldn’t be completed. (OSStatus error -25299 – duplicate item
O,genp,E99372E2,L,ck,X2W6M5UYJ9.com.mydomain.myapp,acct,svce,v_Data,20151218165347.298588Z,2CAE5650)

CKLs-iPhone-5S MyApp[2571] : SecOSStatusWith
error:[-25299] The operation couldn’t be completed. (OSStatus error
-25299 – Remote error : The operation couldn‚Äôt be completed. (OSStatus error -25299 – duplicate item
O,2CAE5650))

有任何想法吗?

解决方法

如果你想使用 CBCentralManagerOptionRestoreIdentifierKey,你必须

>实施方法

// in Objective-C
- (void)centralManager:(CBCentralManager *)central willRestoreState:(NSDictionary<NSString *,id> *)dict

// or in Swift
func centralManager(_ central: CBCentralManager,willRestoreState dict: [String : AnyObject])

CBCentralManagerDelegate起,和
>使用背景模式使用Xcode中设置的蓝牙LE配件:

相关文章

背景 前端时间产品经理决定使用百度统计,使得 工程B 中原统计sdk-友盟统计,需要被去除。之前尝试去除...
结论: alloc负责分配内存和创建对象对应的isa指针; init只是返回alloc生成的对象。 所以alloc后,多次...
更新 如果UI愿意把启动图切割成n份,按一定约束在launchscreen.storyboard中进行排版,启动图效果会更好...
最近在看一本书《Effective OC 2.0》,今天看到有个tip是OC适中循环各自优劣性,作者最终推荐此块循环。...
// // ViewController.m // paintCodeTestOC //gif // Created by LongMa on 2019/7/25. // #import &a...
背景介绍 一般情况下,出于省电、权限、合理性等因素考虑,给人的感觉是很多奇怪的需求安卓可以实现,但...