iOS present AlertController时崩溃。 'Application tried to present modally an active controller <HKConnectViewControll

iOS present AlertController时崩溃。 'Application tried to present modally an active controller <HKConnectViewControll,第1张

概述*** Terminating app due to uncaught exception ‘NSInvalidArgumentException‘, reason: ‘Application tried to present modally an active controller <HKConnectViewController: 0x1050158e0>.‘   分析: 很有可能是你的触发事

*** Terminating app due to uncaught exception ‘NSinvalidargumentexception‘,reason: ‘Application trIEd to present modally an active controller <HKConnectVIEwController: 0x1050158e0>.‘

 

分析:

很有可能是你的触发事件中,触发了多次。也就是说:需要不止一次present。

解决办法:

加入单例,保证只执行一次

    static dispatch_once_t oncetoken;    dispatch_once(&oncetoken,^{        [self presentVIEwController:self.bluetoothCloseAlertC animated:YES completion:nil];    });
总结

以上是内存溢出为你收集整理的iOS present AlertController时崩溃。 'Application tried to present modally an active controller <HKConnectViewController: 0x1050158e0>.'全部内容,希望文章能够帮你解决iOS present AlertController时崩溃。 'Application tried to present modally an active controller <HKConnectViewController: 0x1050158e0>.'所遇到的程序开发问题。

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存