按时间错误使用 NSSortDescriptor 排序(带有核心数据)

Sorting using NSSortDescriptor by time bug (with core data)

请尝试在这里帮助我我有一些非常奇怪的错误试图对我的字符串 table 视图对象进行排序。

行为很简单,我有:

CreateViewController - 我在这里创建字符串并将它们添加到核心数据

StackTableViewController - 这是我创建的字符串的 table 视图。它们应该按日期排序,第一个单元格是最旧的,第二个单元格是在他之后创建的,依此类推...

HomeViewController - 这里我有一个 UILabel,它始终保存 table 视图的第一个对象,如果我在 table 中删除它,我会使用委托方法更新此标签,

就是这样。

问题:

如果 table 视图中没有字符串,然后我在创建页面中添加了一个字符串,它就创建好了,但是如果再添加一个,新的就会位于列表的顶部。 ..但如果我终止应用程序并再次打开它,订单就可以了。

在我添加更多字符串后还有一些其他奇怪的行为...但问题是,每当我终止应用程序并再次打开它时,一切都井井有条..:/

这是相关代码:

CreateViewController.m

- (id)init { 
    self = [super initWithNibName:@"CreateViewController" bundle:nil];
    if (self) {
    }
    return self;
}


- (void)save {

    if (self.myTextView.text.length == 0) {
        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Hey!" message:@"You can't save a blank string" delegate:self cancelButtonTitle:@"Ok" otherButtonTitles:nil, nil];
        [alert show];
    } 

    [self insertTeget];

    [self.presentingViewController dismissViewControllerAnimated:YES completion:nil];

    [self.myTextView resignFirstResponder];
}

//this is where I add the string to the NSManagedObject object I have called 'Target' 
- (void)insertTeget {

    CoreDataStack *stack = [CoreDataStack defaultStack];
    Target *target = [NSEntityDescription insertNewObjectForEntityForName:@"Target" inManagedObjectContext:stack.managedObjectContext];
    if (self.myTextView.text != nil) {
        target.body = self.myTextView.text;
    }

    [stack saveContext];
}

这是 table 视图:

StackTableViewController.m

- (id)init {

    self = [super initWithNibName:@"StackTableViewController" bundle:nil];
    if (self) {

        [self fetchData];
    }
    return self;
}

//currentTarget is a string I have in the .h file to pass the home view controller the first string of the table view  
- (void)fetchData {
    [self.fetchedResultController performFetch:nil];
    if (self.fetchedResultController.fetchedObjects.count > 0) {
        NSIndexPath *indexPath = [NSIndexPath indexPathForItem:0 inSection:0];
        Target *current = [self.fetchedResultController objectAtIndexPath:indexPath];
        self.currentTarget = current.body;
    }else {
        self.currentTarget = nil;
    }
}

- (void)viewDidLoad {

    [super viewDidLoad];
    [self fetchData];
}

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    // Return the number of sections.
    return self.fetchedResultController.sections.count;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    // Return the number of rows in the section.
    id <NSFetchedResultsSectionInfo> sectionInfo = [self.fetchedResultController sections][section];
    return [sectionInfo numberOfObjects];
}

- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return UITableViewCellEditingStyleDelete;
}

//here I'm updating the delegate when A cell was deleted so I can update the label in the home view controller
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {

    Target *target = [self.fetchedResultController objectAtIndexPath:indexPath];
    CoreDataStack *stack = [CoreDataStack defaultStack];
    [[stack managedObjectContext] deleteObject:target] ;
    [stack saveContext];

    if ([_delegate respondsToSelector:@selector(didDeleteObject)]) {
        [self fetchData];
        [_delegate didDeleteObject];
    }
}

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

    static NSString *cellIdentifier = @"StackTableViewCell";

    Target *target = [self.fetchedResultController objectAtIndexPath:indexPath];

    StackTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];

    if (!cell)
    {
        NSArray *topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"StackTableViewCell" owner:self options:nil];
        cell = [topLevelObjects objectAtIndex:0];
    }

    cell.cellLabel.text = target.body;

    return cell;
}

// this is my fetch request where im setting up the sort descriptor 
- (NSFetchRequest *)targetsFetchRequest {

    NSFetchRequest *fetchRequest = [NSFetchRequest fetchRequestWithEntityName:@"Target"];
    NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"time" ascending:YES];
    NSArray *sortDescriptors = [[NSArray alloc] initWithObjects:sortDescriptor, nil];
    [fetchRequest setSortDescriptors:sortDescriptors];
    return fetchRequest;
}


- (NSFetchedResultsController *)fetchedResultController {

    if (_fetchedResultController != nil) {
        return _fetchedResultController;
    }

    CoreDataStack *stack = [CoreDataStack defaultStack];

    NSFetchRequest *fetchRequest = [self targetsFetchRequest];

    _fetchedResultController = [[NSFetchedResultsController alloc] initWithFetchRequest:fetchRequest managedObjectContext:stack.managedObjectContext sectionNameKeyPath:nil cacheName:nil];

    _fetchedResultController.delegate = self;

    return _fetchedResultController;

}

这是我更新标签的主视图控制器:

- (id)init {
    self = [super initWithNibName:@"HomeViewController" bundle:nil];
    if (self) {
        stackTableViewController = [[StackTableViewController alloc] init];
        stackTableViewController.delegate = self;
    }
    return self;
}


- (void)viewWillAppear:(BOOL)animated {
    [stackTableViewController fetchData];
    self.homeLabel.text = stackTableViewController.currentTarget;
}

- (void)viewDidLoad {

    [super viewDidLoad];
    self.homeLabel.text = stackTableViewController.currentTarget;
}

//this is the delegate method
- (void)didDeleteObject { 
    self.homeLabel.text = stackTableViewController.currentTarget;
}

- (IBAction)goToStack:(id)sender {

    [self.navigationController pushViewController:stackTableViewController animated:YES];
}

- (IBAction)goToCreate:(id)sender {

    CreateViewController *createViewController = [[CreateViewController alloc]initWithNibName:@"CreateViewController" bundle:nil];
    UINavigationController *navigationController = [[UINavigationController alloc]initWithRootViewController:createViewController];
    [self.navigationController presentViewController:navigationController animated:YES completion:nil]}

拜托拜托拜托拜托,这让我发疯,为什么只有在我终止应用程序后订单才正常? 谢谢@@@!

我没看到你在任何地方设置时间。如果它用作创建日期,则在创建对象时应将其设置为 [NSDate date]