crash on deleteRowsAtIndexPaths

前端 未结 5 558
温柔的废话
温柔的废话 2020-11-30 12:46

My application crashes when I\'m deleting row from table. Here is my sources where the bug is detected and stack trace. Thanx!

//delete row from database
- (         


        
5条回答
  •  野性不改
    2020-11-30 13:01

    I've seen this before and it is definitely that you have forgotten to update source of data which fill up table. But that part of code is missing. The method which caused this is

    
    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
        return ;
    }
    
    

提交回复
热议问题