从核心数据中显示空的 UITableView 行

Posted

技术标签:

【中文标题】从核心数据中显示空的 UITableView 行【英文标题】:Show empty UITableView row from core data 【发布时间】:2012-05-03 20:28:13 【问题描述】:

我正在尝试模仿 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;
 

【问题讨论】:

【参考方案1】:

NSFetchedResultsController 似乎无法做到这一点,但有一个 3rd 方类可以操作此数据,因此您可以添加空行。

https://github.com/timothyarmes/TAFetchedResultsController

【讨论】:

【参考方案2】:

您可以尝试[context countForFetchRequest:request error:&error];,如果没有结果,它将返回 0。由于您使用的是 NSFetchedResultController,因此您必须在 tableView 方法中进行一些操作,以便显示结果控制器中没有的内容。所以你可以先做 e countForFetchRequest ,然后如果它是 0 继续在表格中显示你需要的东西。

【讨论】:

好吧,如果当前日期没有行,我需要显示一个没有当前日期行的标题。

以上是关于从核心数据中显示空的 UITableView 行的主要内容,如果未能解决你的问题,请参考以下文章

UITableView 和 CoreData - 在特定行和效率中显示数据?

在 UITextView 中显示从 UITableView 中选择的 CoreData 值

Swift UITableView 删除行项 - tableview 数据源是 Core Data

如何从核心数据中获取父实体的所有子实体,以及如何将父数据用作 UITableview

从 API 调用获取数据并在 UItableView 行单击上显示另一个 viewController

如果 UITableView 没有条目,则显示警报