我正在尝试使我的Core数据支持的UITableView具有重新排序功能,在实现所有这些委托和一些提到的核心数据技术here后,我发现了奇怪的行为。点击编辑按钮后,重新排序图标显示就好了,我可以点击它,阴影显示,但当我尝试将其移动到其他行时,我突然失去焦点,细胞移回到它的位置。有谁知道这个问题的原因?
以下是显示问题的视频
http://www.youtube.com/watch?v=ugxuLNL7BnU&feature=youtu.be
这是我的代码
- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath
{
return YES;
}
在-tableView:moveRowAtIndexPath:toIndexPath
我尝试了下面的代码,只是一个空的实现,但问题仍然存在,所以我不认为这不是问题。
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath
{
_changeIsUserDriven = YES;
NSUInteger fromIndex = sourceIndexPath.row;
NSUInteger toIndex = destinationIndexPath.row;
NSMutableArray *newsArray = [[self.fetchedResultsController fetchedObjects] mutableCopy];
News *news = [self.fetchedResultsController.fetchedObjects objectAtIndex:fromIndex];
[newsArray removeObject:news];
[newsArray insertObject:news atIndex:toIndex];
int i = 1;
for (News *n in newsArray) {
n.displayOrder = [NSNumber numberWithInt:i++];
}
[self saveContext];
_changeIsUserDriven = NO;
}
FetchedResultController委托
- (void)controllerWillChangeContent:(NSFetchedResultsController *)controller
{
if (_changeIsUserDriven) {
return;
}
[self.tableView beginUpdates];
}
- (void)controller:(NSFetchedResultsController *)controller didChangeSection:(id <NSFetchedResultsSectionInfo>)sectionInfo
atIndex:(NSUInteger)sectionIndex forChangeType:(NSFetchedResultsChangeType)type
{
if (_changeIsUserDriven) {
return;
}
switch(type) {
case NSFetchedResultsChangeInsert:
[self.tableView insertSections:[NSIndexSet indexSetWithIndex:sectionIndex] withRowAnimation:UITableViewRowAnimationFade];
break;
case NSFetchedResultsChangeDelete:
[self.tableView deleteSections:[NSIndexSet indexSetWithIndex:sectionIndex] withRowAnimation:UITableViewRowAnimationFade];
break;
}
}
- (void)controller:(NSFetchedResultsController *)controller didChangeObject:(id)anObject
atIndexPath:(NSIndexPath *)indexPath forChangeType:(NSFetchedResultsChangeType)type
newIndexPath:(NSIndexPath *)newIndexPath
{
if (_changeIsUserDriven) {
return;
}
UITableView *tableView = self.tableView;
switch(type) {
case NSFetchedResultsChangeInsert:
[tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:newIndexPath] withRowAnimation:UITableViewRowAnimationFade];
break;
case NSFetchedResultsChangeDelete:
[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
break;
case NSFetchedResultsChangeUpdate:
[self configureCell:[tableView cellForRowAtIndexPath:indexPath] atIndexPath:indexPath];
break;
case NSFetchedResultsChangeMove:
[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
[tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:newIndexPath]withRowAnimation:UITableViewRowAnimationFade];
break;
}
}
- (void)controllerDidChangeContent:(NSFetchedResultsController *)controller
{
if (_changeIsUserDriven) {
return;
}
[self.tableView endUpdates];
}
答案 0 :(得分:18)
最后我发现问题了,因为我使用的是外部库,IIViewDeckController,删除之后问题就消失了。
答案 1 :(得分:3)
这确实是由于ViewDeckController造成的。我在MonoTouch中使用端口仍然遇到问题。它(更具体地说)是由于UIPanGestureRecognizer。手势识别器正在拾取平移/拖动动作并相信它本身就是这样,因此它取消了发送到UITableView的触摸。
不幸的是,没有UIPanGestureRecognizer.direction(水平/垂直)属性,但是这里有一篇帖子:UIPanGestureRecognizer - Only vertical or horizontal关于如何将平移手势限制到某个方向。您将需要修改ViewDeckController代码,在该代码中添加UIPanGestureRecognizer以使用上述问题中的子类化版本。
我还没有对此进行测试(因为凌晨2点,今天我就完成了!)但是一旦我有时间实现这个,我会更新我的答案。
作为快速而肮脏的修复,您可以设置
panner.cancelsTouchesInView = NO;
这将允许您移动您的项目,但它也会产生预期的结果,即不取消视图中的触摸,因此,根据您的中心视图的内容,它可能会导致用户按下按钮时只需将视图面板向侧面滑动即可。
另一种可能性是在将表设置为编辑模式时将此属性设置为NO,并在完成后将其更改回YES。