Remove NSManagedObject within commitEditingStyle

145 Views Asked by At

I'm still a newbie in IOS development. I need to remove an object from my ViewController but XCode say that fetchedResultsController is unknown:

#import "ViewController.h"
#import "CoreData/CoreData.h"

@interface ViewController ()

@property (strong) NSMutableArray *devices;

@end

@implementation ViewController

- (NSManagedObjectContext *)managedObjectContext
{
    NSManagedObjectContext *context = nil;
    id delegate = [[UIApplication sharedApplication] delegate];
    if ([delegate performSelector:@selector(managedObjectContext)]) {
        context = [delegate managedObjectContext];
    }
    return context;
}

...

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{

    if (editingStyle == UITableViewCellEditingStyleDelete)
    {
        // two following lines probably are erroneous 
        NSManagedObject *entityToDelete =
        [fetchedResultsController objectAtIndexPath:indexPath];
        [mangedObjectContext deleteObject:entityToDelete];


        // Remove the row from data model
        [self.devices removeObjectAtIndex:indexPath.row];

        [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
    }

}

- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];

    // Fetch the devices from persistent data store
    NSManagedObjectContext *managedObjectContext = [self managedObjectContext];
    NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] initWithEntityName:@"Device"];
    self.devices = [[managedObjectContext executeFetchRequest:fetchRequest error:nil] mutableCopy];

    [self.tableView reloadData];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *simpleTableIdentifier = @"RecipeCell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];

    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier];
    }

    NSManagedObject *device = [self.devices objectAtIndex:indexPath.row];

    cell.textLabel.text = [NSString stringWithFormat:@"%@ %@", [device valueForKey:@"name"], [device valueForKey:@"version"]];
    cell.detailTextLabel.text = [device valueForKey:@"company"];

}

Thanks in advance.

2

There are 2 best solutions below

5
On

You seem to be using self.devices as your data model, not a fetchedResultsController. If so, you should get a reference to the object to delete from that array:

    NSManagedObject *entityToDelete =
    [self.devices objectAtIndex:indexPath.row];
    [mangedObjectContext deleteObject:entityToDelete];
0
On

Okay I solved the question:

NSManagedObjectContext *context = [self managedObjectContext];
if (editingStyle == UITableViewCellEditingStyleDelete)
{
    // Delete object from database
    [context deleteObject:[self.devices objectAtIndex:indexPath.row]];


    // Remove the row from data model
    [self.devices removeObjectAtIndex:indexPath.row];

    [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
}