10

我正在尝试实现一个使用获取的结果控制器作为其数据源的 AQGridView。

我不太确定如何使用网格视图处理 NSFetchedResultsController 委托方法;即内容变化的。我了解如何将 FRC 用于其他网格视图数据源委托。

有人能指出我正确的方向吗?

4

3 回答 3

7

结果应该看起来像这样:

- (void)controllerWillChangeContent:(NSFetchedResultsController *)controller
{
  [gridView beginUpdates];
}

- (void)controller:(NSFetchedResultsController *)controller didChangeSection:(id <NSFetchedResultsSectionInfo>)sectionInfo
       atIndex:(NSUInteger)sectionIndex forChangeType:(NSFetchedResultsChangeType)type
{
  switch(type)
  {
    case NSFetchedResultsChangeInsert:
      break; 
    case NSFetchedResultsChangeDelete:
      break;
  }
}

- (void)controller:(NSFetchedResultsController *)controller didChangeObject:(id)anObject
   atIndexPath:(NSIndexPath *)indexPath forChangeType:(NSFetchedResultsChangeType)type
  newIndexPath:(NSIndexPath *)newIndexPath
{

  ChannelPageViewController *currentPageController, *destinationPageController;

  NSIndexSet * indices = [[NSIndexSet alloc] initWithIndex: indexPath.row];
  NSIndexSet *newIndices = [[NSIndexSet alloc] initWithIndex:newIndexPath.row];

  switch(type) {
      case NSFetchedResultsChangeInsert:
        [gridView insertItemsAtIndices:newIndices withAnimation:AQGridViewItemAnimationNone];
      break;

      case NSFetchedResultsChangeDelete:
        [gridView deleteItemsAtIndices:indices withAnimation:AQGridViewItemAnimationNone];
        break;

      case NSFetchedResultsChangeUpdate:
        [gridView reloadItemsAtIndices:indices withAnimation:AQGridViewItemAnimationNone];
        break;

      case NSFetchedResultsChangeMove:
        [gridView deleteItemsAtIndices:indices withAnimation:AQGridViewItemAnimationNone];
        [gridView insertItemsAtIndices:newIndices withAnimation:AQGridViewItemAnimationNone];
        break;
   }
}

- (void)controllerDidChangeContent:(NSFetchedResultsController *)controller
{
  [gridView endUpdates];
  if ([[frc fetchedObjects] count] == 1) {
    [gridView reloadData];
  }

}
于 2012-01-21T13:18:25.027 回答
0

由于 AQGridView 没有节,处理它的最佳方法是实现 NSFethcedresultscontroller 委托方法,并忽略与更新节相关的案例的任何代码。还要确保在没有 sectionNameKeyPath 的情况下初始化 fetchrequest。

然后只需按照正常模式更新行,但使用 NSIndexSet 而不是 NSIndexPath 和 InsertItemAtIndicies/DeleteItemAtIndicies 而不是 insertRowAtIndexPath/deleteRowAtIndexPath

我现在将我的 AQGridView 移动到 CoreData,所以我会在完成后立即发布我的答案的任何更新......

于 2011-12-29T18:42:16.580 回答
-1

当内容发生变化时,我会做

[self.gridView reloadData];

或者在你的情况下类似的东西。它与 tableview 完全相同。

于 2011-12-24T13:20:48.820 回答