ios coredata的用法和利弊

第一部分coredata的用法

先建立一个使用use coredata的工程,

在。xcdatamodeld文件中建立表格并为表格添加属性

为表格添加关系,

下一步生成表格model

其中生成的model:User和Department里面的属性用的是@dynamic

@property有两个对应的词,一个是@synthesize,一个是@dynamic。如果@synthesize和@dynamic都没写,那么默认的就是@syntheszie var = _var;

@synthesize的语义是如果你没有手动实现setter方法和getter方法,那么编译器会自动为你加上这两个方法。

@dynamic告诉编译器,属性的setter与getter方法由用户自己实现,不自动生成。(当然对于readonly的属性只需提供getter即可)。假如一个属性被声明为@dynamic
var,然后你没有提供@setter方法和@getter方法,编译的时候没问题,但是当程序运行到instance.var =someVar,由于缺setter方法会导致程序崩溃;或者当运行到 someVar = var时,由于缺getter方法同样会导致崩溃。编译时没问题,运行时才执行相应的方法,这就是所谓的动态绑定。

然后会再appdelegate里自动生成以下代码:

#pragma mark - Core Data stack

@synthesize managedObjectContext =
_managedObjectContext;

@synthesize managedObjectModel =
_managedObjectModel;

@synthesize persistentStoreCoordinator =
_persistentStoreCoordinator;

//存储在沙盒里的具体位置

- (NSURL *)applicationDocumentsDirectory {

// The directory the application uses to store the Core Data store file. This code uses a directory named "eims.CoreDatatest" in the application‘s documents directory.

return [[[NSFileManager
defaultManager] URLsForDirectory:NSDocumentDirectory
inDomains:NSUserDomainMask]
lastObject];

}

//托管对象

- (NSManagedObjectModel *)managedObjectModel {

// The managed object model for the application. It is a fatal error for the application not to be able to find and load its model.

if (_managedObjectModel !=
nil) {

return
_managedObjectModel;

}

NSURL *modelURL = [[NSBundle
mainBundle] URLForResource:@"CoreDatatest"
withExtension:@"momd"];

_managedObjectModel = [[NSManagedObjectModel
alloc] initWithContentsOfURL:modelURL];

return
_managedObjectModel;

}

//持久化存储协调器

- (NSPersistentStoreCoordinator *)persistentStoreCoordinator {

// The persistent store coordinator for the application. This implementation creates and return a coordinator, having added the store for the application to it.

if (_persistentStoreCoordinator !=
nil) {

return
_persistentStoreCoordinator;

}

// Create the coordinator and store

_persistentStoreCoordinator = [[NSPersistentStoreCoordinator
alloc] initWithManagedObjectModel:[self
managedObjectModel]];

NSURL *storeURL = [[self
applicationDocumentsDirectory]
URLByAppendingPathComponent:@"CoreDatatest.sqlite"];

NSError *error =
nil;

NSString *failureReason =
@"There was an error creating or loading the application‘s saved data.";

if (![_persistentStoreCoordinator
addPersistentStoreWithType:NSSQLiteStoreType
configuration:nil
URL:storeURL options:nil
error:&error]) {

// Report any error we got.

NSMutableDictionary *dict = [NSMutableDictionary
dictionary];

dict[NSLocalizedDescriptionKey] =
@"Failed to initialize the application‘s saved data";

dict[NSLocalizedFailureReasonErrorKey] = failureReason;

dict[NSUnderlyingErrorKey] = error;

error = [NSError
errorWithDomain:@"YOUR_ERROR_DOMAIN"
code:9999
userInfo:dict];

// Replace this with code to handle the error appropriately.

// abort() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during
development.

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

abort();

}

return
_persistentStoreCoordinator;

}

//托管上下文

- (NSManagedObjectContext *)managedObjectContext {

// Returns the managed object context for the application (which is already bound to the persistent store coordinator for the application.)

if (_managedObjectContext !=
nil) {

return
_managedObjectContext;

}

NSPersistentStoreCoordinator *coordinator = [self
persistentStoreCoordinator];

if (!coordinator) {

return
nil;

}

_managedObjectContext = [[NSManagedObjectContext
alloc] init];

[_managedObjectContext
setPersistentStoreCoordinator:coordinator];

return
_managedObjectContext;

}

#pragma mark - Core Data Saving support

- (void)saveContext {

NSManagedObjectContext *managedObjectContext =
self.managedObjectContext;

if (managedObjectContext !=
nil) {

NSError *error =
nil;

if ([managedObjectContext
hasChanges] && ![managedObjectContext
save:&error]) {

// Replace this implementation with code to handle the error appropriately.

// abort() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during
development.

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

abort();

}

}

}

这些代码知道具体作用就好,如果想自己手动建立起来coredata文件,也可以自己手动写

下面就是在viewcontroller的具体操作,

先引入appdelegate和User,Department的头文件

在viewcontroller里添加

@property (strong,
nonatomic)AppDelegate *myAppDelegate;属性

然后,

具体操作,

添加:

User*user = (User*)[NSEntityDescription
insertNewObjectForEntityForName:@"User"
inManagedObjectContext:self.myAppDelegate.managedObjectContext];

[user setName:_nametextfield.text];

[user setAge:[NSNumber
numberWithInteger:[_agetextfield.text
integerValue]]];

[user setSex:_sextextfield.text];

NSError*error;

BOOL isSaveSuccess = [myAppDelegate.managedObjectContext
save:&error];//保存(容易忘)

if (!isSaveSuccess) {

NSLog(@"Error:%@",error);

_attentiontextview.text = [NSString
stringWithFormat:@"Error:%@",error];

}else{

NSLog(@"Save Successful!");

_attentiontextview.text =
@"Save Successful!";

}

查询:

//数据请求(请求):命令集

NSFetchRequest*request = [[NSFetchRequest
alloc]init];

//NSEntityDescription(实体描述):表

NSEntityDescription*user = [NSEntityDescription
entityForName:@"Department"
inManagedObjectContext:myAppDelegate.managedObjectContext];

[request setEntity:user];

NSError*error;

NSArray*mutablefetchResult = [myAppDelegate.managedObjectContext

executeFetchRequest:request
error:&error];

if (mutablefetchResult ==
nil) {

NSLog(@"Error: %@",mutablefetchResult);

}

NSLog(@"the count of entry:%lu",[mutablefetchResult
count]);

NSString*str =
@"";

for (Department*user
in mutablefetchResult) {

//        NSLog(@"name:%@------age:%@-------sex:%@",user.name,user.age,user.sex);

//        str = [str stringByAppendingFormat:@"name:%@------age:%@-------sex:%@ ---depart:%@\n",user.name,user.age,user.sex,user.userrelationship.departmentname];

str = [str stringByAppendingFormat:@"name:%@------\n",user.departmentname];

}

NSLog(@"str:%@",str);

更新:

//NSFetchRequest 
数据请求(请求):命令集

NSFetchRequest*request = [[NSFetchRequest
alloc]init];

//NSEntityDescription(实体描述):表

NSEntityDescription*user = [NSEntityDescription
entityForName:@"User"
inManagedObjectContext:myAppDelegate.managedObjectContext];

[request setEntity:user];

//设置查询条件 NSPredicate
(谓词):查询语句

NSPredicate*predicate = [NSPredicate
predicateWithFormat:@"name == %@",@"lisi"];

[request setPredicate:predicate];

NSError*error;

NSArray * mutablFetchResult = [myAppDelegate.managedObjectContext
executeFetchRequest:request
error:&error];

if (mutablFetchResult ==
nil) {

NSLog(@"Error:%@",error);

_attentiontextview.text = [NSString
stringWithFormat:@"Error:%@",error];

}

NSLog(@"the count of entry:%lu",[mutablFetchResult
count]);

for (User*user
in mutablFetchResult) {

[user setAge:[NSNumber
numberWithInteger:999]];

}

//判断是否修改成功

BOOL isSaveSuccess = [myAppDelegate.managedObjectContext
save:&error];//保存(容易忘)

if (!isSaveSuccess) {

NSLog(@"Error:%@",error);

_attentiontextview.text = [NSString
stringWithFormat:@"Error:%@",error];

}else{

NSLog(@"update Successful!");

_attentiontextview.text =
@"update Successful!";

}

删除:

//数据请求(命令集)

NSFetchRequest*request = [[NSFetchRequest
alloc]init];

//实体描述(表)

NSEntityDescription*user = [NSEntityDescription
entityForName:@"Department"
inManagedObjectContext:myAppDelegate.managedObjectContext];

[request setEntity:user];

//设置查询条件

NSPredicate* predicate = [NSPredicate
predicateWithFormat:@"departmentname == %@",@"公共事业部"];

[request setPredicate:predicate];

NSError*error;

NSArray*mutableFetchResult = [myAppDelegate.managedObjectContext
executeFetchRequest:request
error:&error];

if (mutableFetchResult ==
nil) {

NSLog(@"Error:%@",error);

_attentiontextview.text = [NSString
stringWithFormat:@"Error:%@",error];

}

NSLog(@"mutableFetchResult %lu",[mutableFetchResult
count]);

for (User*user
in mutableFetchResult) {

[myAppDelegate.managedObjectContext
deleteObject:user];

}

//判断是否删除成功

BOOL isDeleteSuccess = [myAppDelegate.managedObjectContext
save:&error];//保存(容易忘)

if (!isDeleteSuccess) {

NSLog(@"Error:%@",error);

_attentiontextview.text = [NSString
stringWithFormat:@"Error:%@",error];

}else{

NSLog(@"delete Successful!");

_attentiontextview.text =
@"delete Successful!";

}

当然了在主线程中进行这些操作不安全,可以另外开辟线程操作个人强烈推荐

http://blog.csdn.net/fengsh998/article/details/8111855

另外一篇coredata多线程安全

http://blog.csdn.net/chen505358119/article/details/9344389

第二部分coredata的利弊

coredata并非严格的说是对sqlite数据库的一个封装,也可以用其他的数据库,并不一定要使用sqlite3,当然了coredata的好处还是非常多的,高效,简介,能节省至少50%的代码量,条目清新

对于iOS开发者来说,会使用Core Data是一项必备技能。 没有它,很多app都不会存在。当在互联网上四处搜索Core Data学习教程,你很容易被各种各样的术语吓倒。事实上大部分学习教程都首先假定你已经知道了这些术语,而如果你不了解这些术语,那将会陷入困惑中。所以首先要知道关键的术语

下面这篇博文非常之好:

http://blog.jobbole.com/60025/

内容有点繁杂,冗余,诸位见谅则个

时间: 2024-10-05 04:45:10

ios coredata的用法和利弊的相关文章

iOS coredata 数据库升级 时报Can't find model for source store

在coredata 数据库结构被更改后,没根据要求立即建立新version,而是在原version上进行了小修改,之后才想起来建立新版本.并通过以下代码合并数据库, NSError *error = nil; NSDictionary *options = [NSDictionary dictionaryWithObjectsAndKeys: [NSNumber numberWithBool:YES], NSMigratePersistentStoresAutomaticallyOption,

ios CoreData框架的使用,对上下文数据的增删改查,表与表之间的关联,1对多,1对1,谓词查询,多表连接

这里是只是代码,因为博客插入图片效果不是很好,我自己写的总结比较详细,有兴趣的朋友可以在评论里留下邮箱,我收到后会发给大家. 转载注明出处,重视原创者的劳动成果,谢谢! - (void)viewDidLoad { [super viewDidLoad]; [self _creatTable];//插入数据 //    [self _query];// 查询数据 // KVC很霸道,即使readonly通过kvc也可赋值,kvo精华 //    Book * book = [[Book alloc

ios CoreData 用父类的实例对象person接收存有子类的数组,打印person.class ,结果是子类类名?还是父类类名(已解决)

新建Person类 person的子类 Student Teacher 今天做数据库封装时想到的,因为查询出的结果都继承自NSManagerObject,但是他的子类属性又不一定一样,所以我就想我在在查询之后能不能判断他是那个子类并且按照子类的属性进行赋值,所以首先我要数组存的对象的类进行判断 测试如下:(把主要代码贡献如下,其他文件自己建议下吧,很简单) NSMutableArray * array = [NSMutableArray array]; NSMutableArray * arra

ios coredata 老代码备用参考

iPhone OS在2009年6月份推出3.0版本SDK,其中一个特性是引入了Mac SDK中的core data.是一种ORM(Object Relationships Mapping)解决方案,类似java的Hibernate. 有了这个,就不必像ios简单sqlite使用那样编写繁琐代码了,减少工作量,也可以回避使用c的语法,降低ios开发的技术门槛.总之,可降低开发成本,提高项目质量. 本文在很大程度上参考了<Core Data Tutorial for iOS>. 创建ios项目 为

iOS CoreData技术学习资源汇总

1. 苹果官方:Core Data Programming Guide 什么是CoreData? 创建托管对象模型 初始化Core Data堆栈 提取对象 创建和修改自定义托管对象 2.Core Data在 macOS 10.12 , iOS 10.0, tvOS 10.0和watchOS 3.0中的新特性 3.

IOS CoreData的(增删查改)

(1).CoreDataa>什么是CoreDatab>CoreData增删改查 "什么时候使用COredata 什么时候使用FMDatabases"CoreData 在公司使用的比较少,用户的比较多的是FMDatabases 数据存储的结构比较简单的时候,使用CoreData 开发效率会高点,为什么?面向对象,而且不用写sql语句FMDatabases 数据结果比较复杂的时候,表与表之前的关联比较的时候 CoreData表与表之前的关联 查询分页查询模糊查询 一个数据库有一

iOS CoreData数据库之创建详解

CoreData数据库简介 CoreData介绍 CoreData是一门功能强大的数据持久化技术,位于SQLite数据库之上,它避免了SQL的复杂性,能让我们以更自然的方式与数据库进行交互.CoreData提供数据–OC对象映射关系来实现数据与对象管理,这样无需任何SQL语句就能操作他们. CoreData数据持久化框架是Cocoa API的一部分,?次在iOS5 版本的系统中出现,它允许按照实体-属性-值模型组织数据,并以XML.?进制文件或者SQLite数据?件的格式持久化数据 CoreDa

iOS coreData问题

iOS常见错误-CoreData: Cannot load NSManagedObjectModel.nil is an illegal URL parameter?这是因为在工程中CoreData的命名和AppDelegate中使用的命名不同造成的,可能是自己修改了CoreData文件但是忘记修改AppDelegate中相应的字符串.将图片中的字符串改成和CoreData文件名一样就可以了.

IOS - CoreData的使用

今天学习了CoreData的使用,在这里做一下笔记也为了方便以后的查询. Core Data是iOS5之后才出现的一个框架,它提供了对象-关系映射(ORM)的功能(Android上面常用的框架XUtils里面的dbUtils也是使用的这种方式去管理数据),即能够将OC对象转化成数据,保存在SQLite数据库文件中,也能够将保存在数据库中的数据还原成OC对象. CoreData使用到的关键词组 测试代码: #import "ViewController.h" #import <Co