我有一个 iOS 应用程序,它利用 RestKit 0.20.1 从 Restful Web 服务检索数据。我还应该添加应用程序使用 CoreData。当应用程序启动时,主屏幕是一个由默认搜索词填充的集合视图。标题中还有一个文本字段,用作搜索栏。
当用户使用搜索栏时,我无法清除以前加载的单元格。它只是加载新的单元格并将以前的单元格向下推。这是适用的代码。
- (BOOL) textFieldShouldReturn:(UITextField *)textField {
//This sets up the NSDictionary for the Restkit postObject parameters
NSArray *objects =[NSArray arrayWithObjects:textField.text, nil];
NSArray *keys =[NSArray arrayWithObjects: @"query",nil];
NSDictionary *params = [NSDictionary dictionaryWithObjects:objects forKeys:keys];
self.search=params;
//This is the POST request to the server
[[RKObjectManager sharedManager] postObject:nil path:@"/rest/search?ip=255.255.255.0" parameters:search success:nil failure:nil];
//This is what I thought would clear out the old and replace with the new
[self.collectionView reloadData];
[textField resignFirstResponder];
return YES;
}
我引用了这个问题How to remove all items and add new items to UICollectionView? 并且[collectionView reloadData]
是公认的答案。
我选择了本教程中的textFieldShouldReturn:
方法。我还在苹果开发者库中引用了插入、删除和移动部分项目,但我不太确定如何实现删除项目方法。
任何帮助都会很棒。这显然是一个菜鸟问题,因此代码片段非常有帮助。
更新: 这是我如何让它工作的。
在上面代码中的方法和语句deleteAllEntitiesForName
之前添加了对下面显示的方法的调用。postObject
[self.collectionView reloadData]
- (void) deleteAllEntitiesForName:(NSString*)entityName {
NSManagedObjectContext *moc = [self managedObjectContext];
NSEntityDescription *entityDescription = [NSEntityDescription
entityForName:entityName inManagedObjectContext:moc];
NSFetchRequest *request = [[NSFetchRequest alloc] init];
[request setEntity:entityDescription];
NSError *error = nil;
NSArray *array = [moc executeFetchRequest:request error:&error];
if (array != nil) {
for(NSManagedObject *managedObject in array) {
[moc deleteObject:managedObject];
}
error = nil;
[moc save:&error];
}
}
我从这里得到它:刷新核心数据数据库的正确方法