所以我有一个UITableView
代表视频库的。库的数据源是一个NSMutableDictionary
包含NSMutableArray
每个键的 a。每个数组都包含一个数组,其中包含每个值的所有信息。
NSMutableDictionary
-> Foreach Key aNSMutableArray
包含 -> NSMutableArrays
。
tableSectionData
是我的数据源。
我一直在尝试在第一部分插入一行并在另一部分中删除另一行。这是我正在使用的代码:
编辑这是新的尝试。我首先更新数据源,然后添加和删除用我的数据源索引的相应行。
[mainTableView beginUpdates];
NSMutableDictionary *clone = [[NSMutableDictionary alloc]
initWithDictionary:self.tableSectionData copyItems:YES];
for (NSString *key in [clone allKeys]) {
if([key isEqualToString:@"Videos available for download"]) {
for (NSArray *videoArray in [clone objectForKey:key]) {
if ([[videoArray objectAtIndex:0] isEqualToString:helper.videoName]) {
[[self.tableSectionData objectForKey:@"Downloaded videos"]
addObject:videoArray];
NSUInteger insertIndex = [[self.tableSectionData
objectForKey:@"Downloaded videos"]
indexOfObject:videoArray];
NSIndexPath *pathToInsert = [NSIndexPath
indexPathForRow:insertIndex inSection:0];
NSArray *indexesToAddition = [NSArray
arrayWithObject:pathToInsert];
[mainTableView insertRowsAtIndexPaths:indexesToAddition
withRowAnimation:UITableViewRowAnimationFade];
[[self.tableSectionData
objectForKey:@"Videos available for download"] removeObject:videoArray];
NSUInteger deleteIndex = [[self.tableSectionData
objectForKey:@"Videos available for download"] indexOfObject:videoArray];
NSIndexPath *pathToDelete = [NSIndexPath
indexPathForRow:deleteIndex inSection:1];
NSArray *indexesToDeletion = [NSArray arrayWithObject:
pathToDelete];
[mainTableView deleteRowsAtIndexPaths:indexesToDeletion
withRowAnimation:UITableViewRowAnimationFade];
}
}
}
}
[mainTableView endUpdates];
我认为这会起作用,因为如果我想插入一行,我必须先删除一行(如果我想两者都做。)
具体错误如下:
'Invalid update: invalid number of rows in section 0. The number of rows contained in an existing section after the update (4) must be equal to the number of rows contained in that section before the update (3), plus or minus the number of rows inserted or deleted from that section (0 inserted, 0 deleted) and plus or minus the number of rows moved into or out of that section (0 moved in, 0 moved out).'
我知道错误说什么,我在该部分没有相应的行数,但是我没有在代码上看到我的错误,并且我记录了数据源,它对应于所需的结果。
任何帮助和建议将不胜感激!