Coredata simple teaching (2)

Source: Internet
Author: User

1. coredata is easy to write, easy to manage, difficult to find errors, comprehensive, and highly correlated

2. A brief introduction to the query method

 

 1 #pragma mark -  2 - (NSMutableArray *) findAll { 3     NSManagedObjectContext * cxt = [self managedObjectContext]; 4      5     NSEntityDescription * entityDescription = [NSEntityDescription entityForName:@"Person" inManagedObjectContext:cxt]; 6     NSFetchRequest * request = [[NSFetchRequest alloc] init]; 7     [request setEntity:entityDescription]; 8      9     NSSortDescriptor * sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"name" ascending:YES];10     [request setSortDescriptors:@[sortDescriptor]];11     12     NSError * error = nil;13     NSArray * listData = [cxt executeFetchRequest:request error:&error];14     NSMutableArray * resListArray = [[NSMutableArray alloc] init];15     16     for (Person * handle in listData) {17         Person * person = [[Person alloc] init];18         person.name = handle.name;19         person.age = handle.age;20         21         [resListArray addObject:person];22     }23     24     return resListArray;25 }

 

Coredata simple teaching (2)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.