iOS app运行时报错:This application is modifying the autolayout engine from a background thread after the

今天在写程序的时候,使用Xcode 运行工程时报出下面的错误错信息,我还以为是什么呢,好久没遇到过这样的错误了

**2018-09-03 14:47:20.205913 ProjectName[1512:778965] This application is modifying the autolayout engine from a background thread after the engine was accessed from the main thread. This can lead to engine corruption and weird crashes.** ** Stack:(** ** 0 CoreFoundation 0x00000001843b61d8 <redacted>+ 148** ** 1 libobjc.A.dylib 0x0000000182df055c objc_exception_throw + 56** ** 2 CoreFoundation 0x00000001843b6108 <redacted>+ 0** ** 3 Foundation 0x0000000184f9dea4 <redacted>+ 192** ** 4 Foundation 0x0000000184de53fc <redacted>+ 36** ** 5 UIKit 0x000000018ab5c770 <redacted>+ 72** ** 6 UIKit 0x000000018a20e1e8 <redacted>+ 1140** ** 7 QuartzCore 0x00000001876ce188 <redacted>+ 148** ** 8 QuartzCore 0x00000001876c2e64 <redacted>+ 292** ** 9 QuartzCore 0x00000001876c2d24 <redacted>+ 32** ** 10 QuartzCore 0x000000018763f7ec <redacted>+ 252** ** 11 QuartzCore 0x0000000187666c58 <redacted>+ 512** ** 12 QuartzCore 0x0000000187667124 <redacted>+ 660** ** 13 libsystem_pthread.dylib 0x000000018344afbc <redacted>+ 572** ** 14 libsystem_pthread.dylib 0x000000018344ace4 <redacted>+ 200** ** 15 libsystem_pthread.dylib 0x000000018344a378 pthread_mutex_lock + 0** ** 16 libsystem_pthread.dylib 0x0000000183449da4 start_wqthread + 4** **)**

从上面的报错信息可以看出,主线程在运行的时候子线程修改了主线程UI的布局约束,在iOS开发中,所有的有关界面UI的更新操作必须在主线程中完成。这样的错误很容易出现在使用block的时候,因为我的block就是在子线程中进行的,所以回顾了刚才自己写的代码,发现还真是粗心了。
解决的办法就是把有关UI更新的代码操作放到主线程中就可以了。
修改前:

[self.healthMgr stepCount:^(doublesteps, NSError*error) { cell.stepsNumberLabel.text = [NSStringstringWithFormat:@"%.0f 步数", steps]; }]; [self.healthMgr distance:^(doubledistance, NSError*error) { cell.distanceLabel.text = [NSStringstringWithFormat:@"%.02f 公里", distance]; }]; [self.healthMgr floorsClimbed:^(doublefloors, NSError*error) { cell.floorsNumberLabel.text = [NSStringstringWithFormat:@"%.0f 楼层", floors]; }];


修改后:

[self.healthMgr stepCount:^(doublesteps, NSError*error) {dispatch_async(dispatch_get_main_queue(), ^{ cell.stepsNumberLabel.text = [NSStringstringWithFormat:@"%.0f 步数", steps]; }); }]; [self.healthMgr distance:^(doubledistance, NSError*error) {dispatch_async(dispatch_get_main_queue(), ^{ cell.distanceLabel.text = [NSStringstringWithFormat:@"%.02f 公里", distance]; }); }]; [self.healthMgr floorsClimbed:^(doublefloors, NSError*error) {dispatch_async(dispatch_get_main_queue(), ^{ cell.floorsNumberLabel.text = [NSStringstringWithFormat:@"%.0f 楼层", floors]; }); }];

这时候,你可能会问block是在子线程执行的吗?
答:不一定。这个得看你执行block的时候,是哪种线程了,要是在主线程执行block,那么你的block里边的线程就是主线程了。否则就是子线程。
 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值