1

iPhoneのCalendarListViewと同じようにビューを作成しています。私はコアデータを使用して予定を取得し、日付でグループ化しています。

ただし、iPhoneのリストビューと同じように、予定がない場合でも、今日は空白のセクションを追加する必要があります。グループ化を作成する前に並べ替えを行っているため、予定のないセクションでこれを行う方法がわかりません。

に空のセクションを追加し、NSFetchedResultsController今日の日付がリストの最後ではなく正しい場所に表示されるようにするにはどうすればよいですか?

- (NSFetchedResultsController *)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

1 に答える 1

3

空のセクションを含めることはできませんNSFetchedResultsController-それは現時点で設計されている方法であり、私はそれを制限と呼びます:)

TAFetchedResultsControllerこの問題は、空のセクションを許可するクラスを作成したTimothy Armesによって発生し、対処されました。の代わりになりNSFetchedResultsControllerます。また、セクション名ではないフィールドでセクションを並べ替えることもできます(非常に便利です)

ただし、CoreDataモデルに変更を加える必要があります。これは置き換えの低下ではありません。

https://github.com/timothyarmes/TAFetchedResultsController

しかし、それはうまく機能し、データモデルをやり直したいのであれば問題を解決します。

お役に立てれば :)

于 2012-07-02T06:06:28.703 に答える