ios NSNotificationCenter接受通知不能操作UI线程

今天遇到了一个很奇怪的问题,集成融云聊天,,获取群组未读消息数量的时候,我写了一个通知,再通知中更新tableview  Cell中的消息数量,但是消息数量改变的很慢,而且有时候不更新  我是更新某一个cell  

                        [self.tableView reloadRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:i inSection:0]] withRowAnimation:UITableViewRowAnimationAutomatic];在测试的时候发现,cell的drawRect方法不执行,如果是直接reloadData  ,就没问题,,

在log中发现了一句    This application is modifying the autolayout engine from a background thread after the engine was a  ,下面是我的通知方法,这样在main线程中刷新就没什么问题了,


- (void)receiveMessage:(NSNotification *)notification

{

    RCMessage *message = [[notification object] objectForKey:@"message"];

    if (message) {

        for (NSInteger i=0; i<self.customerArray.count; i++) {

            CustomerModel *model = self.customerArray[i];

            if ([model.ChatRoomId isEqualToString:message.targetId]) {

                model.unreadMsg = @([[RCIMClient sharedRCIMClient] getUnreadCount:ConversationType_GROUP targetId:message.targetId]);

                

                dispatch_async(dispatch_get_main_queue(), ^{

                    NSArray *visiableCells = self.tableView.visibleCells;

                    HomeListCell *cell = [self.tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:i inSection:0]];

                    if ([visiableCells containsObject:cell]) {

                        [self.tableView reloadRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:i inSection:0]] withRowAnimation:UITableViewRowAnimationAutomatic];

                    }

                });

               

                break;


            }

        }

    }

    

}


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

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值