gpt4 book ai didi

ios - 单例核心数据方法

转载 作者:行者123 更新时间:2023-11-29 04:09:48 24 4
gpt4 key购买 nike

我正在尝试对核心数据使用单例。这是核心数据堆栈:

#pragma mark - Core Data stack
- (NSManagedObjectContext *)managedObjectContext {
if (_managedObjectContext != nil) {
return _managedObjectContext;
}

NSPersistentStoreCoordinator *coordinator = [self persistentStoreCoordinator];
if (coordinator != nil) {
_managedObjectContext = [[NSManagedObjectContext alloc] init];
[_managedObjectContext setPersistentStoreCoordinator:coordinator];
}
return _managedObjectContext;
}
- (NSManagedObjectModel *)managedObjectModel {
if (_managedObjectModel != nil) {
return _managedObjectModel;
}
NSURL *modelURL = [[NSBundle mainBundle] URLForResource:@"Model" withExtension:@"momd"];
_managedObjectModel = [[NSManagedObjectModel alloc] initWithContentsOfURL:modelURL];
return _managedObjectModel;
}
- (NSPersistentStoreCoordinator *)persistentStoreCoordinator {
if (_persistentStoreCoordinator != nil) {
return _persistentStoreCoordinator;
}

NSURL *storeURL = [[self applicationDocumentsDirectory] URLByAppendingPathComponent:@"MyApp.sqlite"];

NSError *error = nil;
_persistentStoreCoordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:[self managedObjectModel]];
if (![_persistentStoreCoordinator addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:storeURL options:nil error:&error]) {
NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
abort();
}

return _persistentStoreCoordinator;
}
- (NSURL *)applicationDocumentsDirectory {
return [[[NSFileManager defaultManager] URLsForDirectory:NSDocumentDirectory inDomains:NSUserDomainMask] lastObject];
}

这是我用来保存实体的方法,并且它有效

-(void)addFund {

Fund *fund = [NSEntityDescription insertNewObjectForEntityForName:@"Fund" inManagedObjectContext:self.managedObjectContext];

fund.name = @"Test Name";

[self.managedObjectContext save:nil]; // write to database
}

当我需要在 Controller 中显示表中的项目时,问题就出现了。我创建了一个返回 NSFetchedResultsController 的方法。可能这就是错误。

 -(NSFetchedResultsController*)loadFunds {
//Core data request
NSError *error;
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
NSEntityDescription *entity = [NSEntityDescription entityForName:@"Fund"
inManagedObjectContext:self.managedObjectContext];
[fetchRequest setEntity:entity];

fetchRequest.sortDescriptors = [NSArray arrayWithObject:[NSSortDescriptor sortDescriptorWithKey:@"name" ascending:YES selector:@selector(localizedCaseInsensitiveCompare:)]];
NSFetchedResultsController *result = [[NSFetchedResultsController alloc] initWithFetchRequest:fetchRequest
managedObjectContext:self.managedObjectContext sectionNameKeyPath:nil
cacheName:@"Root"];
return result;
}

但 TableView 不返回任何内容(Null):

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {

NSInteger numberOfSections = [[[[Singleton sharedSingleton] loadFunds] sections] count];

if (numberOfSections == 0) {
numberOfSections = 1;
}

return numberOfSections;

}


-(NSInteger)tableView:(UITableView *)table numberOfRowsInSection:(NSInteger)section {
id sectionInfo = [[[Singleton sharedSingleton].loadFunds sections] objectAtIndex:section];

return [sectionInfo numberOfObjects];

}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Category Cell";
....
// Configure the cell...
Fund *fund = [[Singleton sharedSingleton].loadFunds objectAtIndexPath:indexPath];
cell.titleLabel.text = fund.name;
....
}

非常感谢您的帮助!

最佳答案

您需要使用以下方式获取数据:

NSError *error;
[self.fetchedResultsController performFetch: &error];

然后重新加载表格 View ,如下所示:

[self.tableView reloadData];

关于ios - 单例核心数据方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14591395/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com