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

來源:互聯網
上載者:User
今天遇到了一個很奇怪的問題,整合融雲聊天,,擷取群組未讀訊息數量的時候,我寫了一個通知,再通知中更新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;


            }

        }

    }

    

}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.