簡體   English   中英

刪除后帶有核心數據的iOS UITableView崩潰

[英]iOS UITableView with core data crash after delete

我正在使用用Objective-C編寫的iOS應用程序,並且我具有表視圖以及來自核心數據的許多記錄。 當我刪除一條記錄時,該行將從Core數據中刪除,但應用程序給我一個錯誤:

-[_ PFArray removeObjectAtIndex:]:無法識別的選擇器已發送到實例0x7fbf5be5e6b0

我已經嘗試過很多次來更改此設置,但是它仍然會使應用程序崩潰或刪除后的表視圖未更新。

這是我的頭文件:

#import <UIKit/UIKit.h>
#include "Notes.h"
@interface ShowClassNote : UIViewController<UITabBarDelegate,UITableViewDataSource>

// get moodle id from segue
@property(strong,nonatomic)NSString*moodeleID;
@property(strong,nonatomic)NSString*moodleName;
@property(strong,nonatomic)NSString*content;
@property (nonatomic, strong) NSMutableArray *fetchedObjects;

@property(strong)NSManagedObjectContext*passThis;

@property(strong,nonatomic)NSString*dataForSend;
@property(strong,nonatomic)NSArray*noteID;
@property(strong,nonatomic)NSArray*noteTitle;
@property(strong,nonatomic)NSArray*insertDates;
@property(strong,nonatomic)NSArray*noteContent;

@property (weak, nonatomic) IBOutlet UILabel *classTitleLable;

@property (weak, nonatomic) IBOutlet UITableView *allNotes;

@end

這是我的實現文件:

#import "ShowClassNote.h"
#import "Subjects.h"
#import "NewClassNote.h"
#import "Notes.h"
#import "AllClassNotesCell.h"
@interface ShowClassNote ()

@end

@implementation ShowClassNote

- (void)viewDidLoad {
    [super viewDidLoad];

    id delegate =[[UIApplication sharedApplication]delegate];

    NSError*error=nil;

    NSManagedObjectContext *context = [delegate managedObjectContext];



    NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
    NSEntityDescription *entity = [NSEntityDescription entityForName:@"Notes"
                                              inManagedObjectContext:context];
   NSPredicate * predicate =[NSPredicate predicateWithFormat:[NSString stringWithFormat:@"moodleCode=='%@'",self.moodeleID]];
    [fetchRequest setPredicate:predicate];
    [fetchRequest setEntity:entity];
    self.fetchedObjects = [[NSMutableArray alloc]initWithObjects:[context executeFetchRequest:fetchRequest error:&error], nil];
   // self.fetchedObjects =(NSMutableArray *) [context executeFetchRequest:fetchRequest error:&error];

   // NSArray *fetchedObjects = [context executeFetchRequest:fetchRequest error:&error];
    self.noteTitle  =[[[NSArray alloc]initWithArray:_fetchedObjects]valueForKey:@"title"];
    self.insertDates  =[[[NSArray alloc]initWithArray:_fetchedObjects]valueForKey:@"insertDate"];
    self.noteContent  =[[[NSArray alloc]initWithArray:_fetchedObjects]valueForKey:@"content"];
    self.noteID=[[[NSArray alloc]initWithArray:_fetchedObjects]valueForKey:@"moodleCode"];

    self.classTitleLable.text=self.moodleName;

    self.title=self.moodleName;

    [self.allNotes reloadData];


}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

-(UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{

    return 0;

}

- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
    // This will create a "invisible" footer
    return 0.01f;
}

#pragma mark - Table view data source

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

    // Return the number of sections.
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {

    // Return the number of rows in the section.
    return [self.fetchedObjects count];
}


- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {


    static NSString * cellIdnt =@"noteCell";

    AllClassNotesCell *cell =(AllClassNotesCell *) [tableView dequeueReusableCellWithIdentifier:cellIdnt forIndexPath:indexPath];

    // Configure the cell...
    // Get current date & time
    NSDate *currDate =  [self.insertDates objectAtIndex:indexPath.row];
    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc]init];
    [dateFormatter setDateFormat:@"dd/MM/YY HH:mm"];
    NSString* dateToString =[dateFormatter stringFromDate:currDate];




    cell.textLabel.text= [self.noteTitle objectAtIndex:indexPath.row]  ;
     cell.detailTextLabel.text=dateToString;

    return cell;
}


- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return 78;
}



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




        id delegate =[[UIApplication sharedApplication]delegate];

        // Delete the role object that was swiped
        NSUInteger currentSelect = indexPath.row;


        NSManagedObjectContext *context = [delegate managedObjectContext];



        Notes * roleToDelete= [self.fetchedObjects objectAtIndex:currentSelect];
        [context deleteObject:roleToDelete];

        // Save the context.
        NSError *error;

        if (![context save:&error])
        {

            NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
        }


    [_fetchedObjects removeObjectAtIndex:currentSelect];
    [self.allNotes reloadData];





}


-(void)viewWillAppear:(BOOL)animated{
    id delegate =[[UIApplication sharedApplication]delegate];

    NSError*error=nil;

    NSManagedObjectContext *context = [delegate managedObjectContext];



    NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
    NSEntityDescription *entity = [NSEntityDescription entityForName:@"Notes"
                                              inManagedObjectContext:context];
    NSPredicate * predicate =[NSPredicate predicateWithFormat:[NSString stringWithFormat:@"moodleCode=='%@'",self.moodeleID]];
    [fetchRequest setPredicate:predicate];
    [fetchRequest setEntity:entity];

     self.fetchedObjects = (NSMutableArray *)[context executeFetchRequest:fetchRequest error:&error];
    self.noteTitle  =[[[NSArray alloc]initWithArray:_fetchedObjects]valueForKey:@"title"];
    self.insertDates  =[[[NSArray alloc]initWithArray:_fetchedObjects]valueForKey:@"insertDate"];

    self.classTitleLable.text=self.moodleName;

    self.title=self.moodleName;

    [self.allNotes reloadData];

}



#pragma mark - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {


    if ([[segue identifier]isEqual:@"newNote"]) {

        NewClassNote * newNoteView =[segue destinationViewController];
        newNoteView.moodleID =self.moodeleID;
        newNoteView.newOrOld =YES;
    }else if ([[segue identifier]isEqual:@"showNote"])
    {

        NewClassNote * dvc =[segue destinationViewController];
        NSUInteger currentSelect = [self.allNotes indexPathForSelectedRow].row;
           NSLog(@"Send is %lu",(unsigned long)currentSelect);
        dvc.returnData =[self.fetchedObjects objectAtIndex:currentSelect];



        NewClassNote *destViewController = segue.destinationViewController;

        destViewController.comingData = [self.noteTitle objectAtIndex:[[self.allNotes indexPathForSelectedRow] row]];
        destViewController.insertDate=  [self.insertDates objectAtIndex:[[self.allNotes indexPathForSelectedRow] row]];

        [self.allNotes reloadData];
    }
    // Get the new view controller using [segue destinationViewController].
    // Pass the selected object to the new view controller.
}



@end

您可以向我解釋為什么會出現此錯誤嗎? 刪除后的總行數與刪除前的總行數不同,但我不知道為什么會出現此錯誤?

您的錯誤來自這里:

self.fetchedObjects = (NSMutableArray *)[context executeFetchRequest:fetchRequest error:&error];

-executeFetchRequest:error:返回NSArray,它是不可變的,如果僅將其-executeFetchRequest:error:為NSMutableArray,則不會神奇地改變自身。 但是稍后您嘗試

[_fetchedObjects removeObjectAtIndex:currentSelect];

-removeObjectAtIndex發送到NSArray實例。

您可以嘗試解決此問題:

self.fetchedObjects = [[context executeFetchRequest:fetchRequest error:&error] mutableCopy];

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM