Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/EmptyTag/152.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Ios 向核心数据添加数据(使用tableview),删除现有数据_Ios_Objective C_Xcode_Uitableview_Core Data - Fatal编程技术网

Ios 向核心数据添加数据(使用tableview),删除现有数据

Ios 向核心数据添加数据(使用tableview),删除现有数据,ios,objective-c,xcode,uitableview,core-data,Ios,Objective C,Xcode,Uitableview,Core Data,我正在尝试将NSManagedObject添加到现有数据中,但在添加之后,现有数据就消失了,我不知道为什么。查看代码一个小时也帮不了什么忙:( FirstTableViewController.m//委托指向AppDelegate - (void)viewDidLoad { [super viewDidLoad]; self.context=[DELEGATE managedObjectContext]; self.everyWish=[[NSMutableArray a

我正在尝试将NSManagedObject添加到现有数据中,但在添加之后,现有数据就消失了,我不知道为什么。查看代码一个小时也帮不了什么忙:(

FirstTableViewController.m//委托指向AppDelegate

- (void)viewDidLoad {
    [super viewDidLoad];
    self.context=[DELEGATE managedObjectContext];
    self.everyWish=[[NSMutableArray alloc]initWithArray:[DELEGATE collectSharedWishes]]; //collects every shared wishes from core data
    self.emberek=[[NSMutableArray alloc]initWithArray:[DELEGATE collectUserNames]]; //collects every user
}

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

    UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:IDENTIFIER forIndexPath:indexPath];

    User *emberek=[self.emberek objectAtIndex:indexPath.row];
    NSMutableArray *currentUserWishes=[[NSMutableArray alloc]initWithArray:[DELEGATE collectCurrentUserSharedWishes:emberek]]; //collects the current user wishes only from core data 

    int completed=0;
    for(SharedWishes *wish in currentUserWishes)
        if([wish.wishIsPurchased isEqual:@1])
            completed++;

    cell.textLabel.text=emberek.userName;
    cell.detailTextLabel.text=[NSString stringWithFormat:@"Wishes: %lu, purchased: %d", (unsigned long)currentUserWishes.count, completed];

    return cell;
}
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
    if([segue.identifier isEqualToString:@"pushToCurrentUser"]){

        User *user=[self.emberek objectAtIndex:[[self.tableView indexPathForSelectedRow]row]];

        SharedTableViewController *wishTVC=[segue destinationViewController];
        wishTVC.user=user;
        NSLog(@"%@", user);
    }
}
OtherTableViewController.h

@property NSManagedObjectContext *context;
@property User *user;
OtherTableViewController.m

- (void)viewDidLoad
{
    [super viewDidLoad];
    self.context=[DELEGATE managedObjectContext];
    self.format=[[NSDateFormatter alloc]init];
    self.todayFormat=[[NSDateFormatter alloc]init];

    self.results=[[NSMutableArray alloc]init];
    self.wishes=[[NSMutableArray alloc]initWithArray:[DELEGATE collectCurrentUserSharedWishes:self.user]];
    self.navigationItem.title=[NSString stringWithFormat:@"%@'s list", self.user.userName];
    [[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(refreshTableViewData) name:@"refreshTableViewData" object:nil];

    self.refreshControl=[[UIRefreshControl alloc] init];
    [self.refreshControl setTintColor:[UIColor redColor]];
    [self.tableView addSubview:self.refreshControl];
    [self.refreshControl addTarget:self action:@selector(pullDownToRefresh:) forControlEvents:UIControlEventValueChanged];
}

-(void)fetch:(CKRecord *)obj
{
    NSError *error;
    SharedWishes *wish=[NSEntityDescription insertNewObjectForEntityForName:@"SharedWishes" inManagedObjectContext:self.context];

    NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
    NSEntityDescription *entity = [NSEntityDescription entityForName:@"SharedWishes" inManagedObjectContext:self.context];
    [fetchRequest setEntity:entity];

    NSPredicate *predicate = [NSPredicate predicateWithFormat:@"wishID==%@", obj.recordID.recordName];
    [fetchRequest setPredicate:predicate];

    NSArray *fetchedObjects = [self.context executeFetchRequest:fetchRequest error:&error];
    if (fetchedObjects == nil)
        NSLog(@"Nem sikerult az ab-t elerni!, %@", [error localizedDescription]);

    if([fetchedObjects isEqual:@[]])
    {
        User *currentUser=[[DELEGATE fetchUserWithID:self.user.userID] objectAtIndex:0]; //fetches the current user, which i already have, tried before using [self.user addSharedWishesObject:wish]
        wish.wishName=obj[@"name"];
        wish.wishPrice=obj[@"price"];
        wish.wishIcon=obj[@"icon"];
        wish.wishTime=obj[@"creationDate"];

        wish.wishLocation=obj[@"location"];
        wish.wishDescription=obj[@"description"];
        wish.wishType=obj[@"type"];
        wish.wishURL=obj[@"url"];
        wish.wishImage=obj[@"image"];
        wish.wishID=obj.recordID.recordName;
        wish.wishIsPurchased=obj[@"purchased"];
        wish.wishChangeTag=obj.recordChangeTag;
        NSError *error;

        [currentUser addSharedWishesObject:wish];

        if(![self.context save:&error])
            NSLog(@"Nem tudtam eltarolni az adatbazisban, oka: %@", [error localizedDescription]);
    }
    else
    {
        wish=[fetchedObjects objectAtIndex:0];

        if(![wish.wishChangeTag isEqualToString:obj.recordChangeTag]){

            wish.wishName=obj[@"name"];
            wish.wishPrice=obj[@"price"];
            wish.wishIcon=obj[@"icon"];
            wish.wishTime=obj[@"creationDate"];

            wish.wishLocation=obj[@"location"];
            wish.wishDescription=obj[@"description"];
            wish.wishType=obj[@"type"];
            wish.wishURL=obj[@"url"];
            wish.wishImage=obj[@"image"];
            wish.wishID=obj.recordID.recordName;
            wish.wishIsPurchased=obj[@"purchased"];
            wish.wishChangeTag=obj.recordChangeTag;

            //wish.user.userID=obj.creatorUserRecordID.recordName;

            NSError *error;
            if(![self.context save:&error])
                NSLog(@"Nem tudtam eltarolni az adatbazisban, oka: %@", [error localizedDescription]);
        }
    }
}
下面是代码,它运行时没有错误,所有内容都正确声明,尽管我没有提到(为了简化代码)。 运行后,我拥有所有用户,但只显示最后一个用户的愿望,调用
NSMutableArray*currentUserwisks=[[NSMutableArray alloc]initWithArray:[DELEGATE collectCurrentUserSharedWishes:emberek]];
来自FirsTableViewController。最后一个具有正确数量的对象,前面的具有@“0个对象”

在OtherTableViewController中保存它们?有什么想法吗?
备注:如果需要,发布更多详细信息

错误修复:
在我保存了这些对象之后,我调用了一个方法,在这个方法中,我将我的元素(在我的数据库中)与云元素进行比较,然后从我的持久数据库中删除那些在云中不再可用的元素谓词导致了主要问题,因为我查询了所有数据库对象,而不是特定用户的元素

请共享您的模型。这将有助于进一步分析。感谢您的帮助,但我已经找到了问题所在:在保存对象之后,我调用了一个方法,在该方法中我比较了我的元素(在我的数据库中)添加到云元素,并从我的持久数据库中删除云中不再可用的元素。主要问题是“错误”谓词导致的,因为我查询了我的所有数据库对象,而不是特定用户的元素。感谢您的帮助,我很感激!;)