-(void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)oldPath toIndexPath:(NSIndexPath *)newPath {
if(oldPath.section == newPath.section && oldPath.row == newPath.row) return;
NSMutableArray * group = (NSMutableArray *) self.groups;
NSMutableArray *gItems = [group objectAtIndex:oldPath.section];
NSDictionary *item = [gItems objectAtIndex:oldPath.row];
[gItems removeObjectAtIndex:oldPath.row];
gItems = [group objectAtIndex:newPath.section];
[gItems insertObject:item atIndex:newPath.row];
[self.tableItems moveRowAtIndexPath:oldPath toIndexPath:newPath];
}
セクション間で行を移動しようとしています。ただし、行を実行するたびにクラッシュ[self.tableItems moveRowAtIndexPath:oldPath toIndexPath:newPath]
します。何が間違っていましたか? 事前にタイ。