1

iPhoneのカレンダーリストビューを模倣して、予定をリストに表示しようとしています。「今日」の予定があるかどうかに関係なく、今日の日付のセクションが欲しいです。以下のfetchControllerを使用して、今日の予定が存在しない場合はどのように確認し、空のセクションを追加して並べ替えを台無しにしないでください。

- (NSFetchedResultsController *)fetchedResultsController {

//    if (fetchedResultsController != nil) {
//        return fetchedResultsController;
//    }

    /*
     Set up the fetched results controller.
     */
    // Create the fetch request for the entity.
    NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
    // Edit the entity name as appropriate.
    NSEntityDescription *entity = [NSEntityDescription entityForName:@"Appointments" inManagedObjectContext:[[CoreDataHelper sharedInstance] managedObjectContext]];
    [fetchRequest setEntity:entity];
    //[fetchRequest setIncludesPendingChanges:YES];

    // Set the batch size to a suitable number.
    //[fetchRequest setFetchBatchSize:20];

    // Sort using the date / then time property.
    NSSortDescriptor *sortDescriptorDate = [[NSSortDescriptor alloc] initWithKey:@"date" ascending:YES];
    NSSortDescriptor *sortDescriptorTime = [[NSSortDescriptor alloc] initWithKey:@"start_time" ascending:YES selector:@selector(localizedStandardCompare:)];
    NSArray *sortDescriptors = [[NSArray alloc] initWithObjects:sortDescriptorDate, sortDescriptorTime, nil];


    [fetchRequest setSortDescriptors:sortDescriptors];

    // Use the sectionIdentifier property to group into sections.
    NSFetchedResultsController *aFetchedResultsController = [[NSFetchedResultsController alloc] initWithFetchRequest:fetchRequest managedObjectContext:[[CoreDataHelper sharedInstance] managedObjectContext] sectionNameKeyPath:@"date" cacheName:nil];
    aFetchedResultsController.delegate = self;
    self.fetchedResultsController = aFetchedResultsController;
    return fetchedResultsController;
} 
4

2 に答える 2

1

これはで実行できるようには見えませんがNSFetchedResultsController、このデータを操作するサードパーティのクラスがあるため、空の行を追加できます。

https://github.com/timothyarmes/TAFetchedResultsController

于 2012-08-16T20:55:12.087 に答える
0

[context countForFetchRequest:request error:&error];結果がない場合は、これを試すと0が返されます。NSFetchedResultControllerを使用しているため、結果コントローラーにないものを表示するには、tableViewメソッドをいじくり回す必要があります。したがって、最初にe countForFetchRequestを実行し、それが0の場合は、先に進んで必要なものをテーブルに表示します。

于 2012-05-23T01:24:46.987 に答える