Mobile Application/iOS

[iOS] swipe로 tableViewcell Delete할때 죽는 문제 (UITableViewCellEditingStyleDelete)

Y freesia 2015. 3. 12. 12:50

UITableViewCellEditingStyleDelete모드에서 swipe로 cell을 삭제할때 간헐적으로 죽는 문제

 

-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath

{

....

....

....

 

dispatch_async(dispatch_get_main_queue(), ^{

[tableView reloadData];

});

}

 

 

thread로 처리.

반응형