*** 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>.'所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)