(五)CoreData 使用 (转)
第一次真正的使用CoreData,因此也会写下体会和心得。。。等有时间
Core Data数据持久化是对SQLite的一个升级,它是ios集成的,在说Core Data之前,我们先说说在CoreData中使用的几个类。
(1)NSManagedObjectModel(被管理的对象模型)
相当于实体,不过它包含 了实体间的关系
(2)NSManagedObjectContext(被管理的对象上下文)
操作实际内容
作用:插入数据 查询 更新 删除
(3)NSPersistentStoreCoordinator(持久化存储助理)
相当于数据库的连接器
(4)NSFetchRequest(获取数据的请求)
相当于查询语句
(5)NSPredicate(相当于查询条件)
(6)NSEntityDescription(实体结构)
(7)后缀名为.xcdatamodel的包
里面的.xcdatamodel文件,用数据模型编辑器编辑
编译后为.momd或.mom文件,这就是为什么文件中没有这个东西,而我们的程序中用到这个东西而不会报错的原因
首先我们要建立模型对象
其次我们要生成模型对象的实体User,它是继承NSManagedObjectModel的
点击之后你会发现它会自动的生成User,现在主要说一下,生成的User对象是这种形式的
这里解释一下dynamic 平常我们接触的是synthesize
dynamic和synthesize有什么区别呢?它的setter和getter方法不能自已定义
打开CoreData的SQL语句输出开关
1.打开Product,点击EditScheme...
2.点击Arguments,在ArgumentsPassed On Launch中添加2项
1> -com.apple.CoreData.SQLDebug
2> 1
- #import <UIKit/UIKit.h>
- #import <CoreData/CoreData.h>
- @class ViewController;
- @interface AppDelegate : UIResponder <UIApplicationDelegate>
- @property (strong, nonatomic) UIWindow *window;
- @property (strong, nonatomic) ViewController *viewController;
- @property(strong,nonatomic,readonly)NSManagedObjectModel* managedObjectModel;
- @property(strong,nonatomic,readonly)NSManagedObjectContext* managedObjectContext;
- @property(strong,nonatomic,readonly)NSPersistentStoreCoordinator* persistentStoreCoordinator;
- @end
- #import "AppDelegate.h"
- #import "ViewController.h"
- @implementation AppDelegate
- @synthesize managedObjectModel=_managedObjectModel;
- @synthesize managedObjectContext=_managedObjectContext;
- @synthesize persistentStoreCoordinator=_persistentStoreCoordinator;
- - (void)dealloc
- {
- [_window release];
- [_viewController release];
- [_managedObjectContext release];
- [_managedObjectModel release];
- [_persistentStoreCoordinator release];
- [super dealloc];
- }
- - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
- {
- self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
- // Override point for customization after application launch.
- self.viewController = [[[ViewController alloc] initWithNibName:@"ViewController" bundle:nil] autorelease];
- self.window.rootViewController = self.viewController;
- [self.window makeKeyAndVisible];
- return YES;
- }
- - (void)applicationWillResignActive:(UIApplication *)application
- {
- // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
- // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
- }
- - (void)applicationDidEnterBackground:(UIApplication *)application
- {
- // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
- // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
- }
- - (void)applicationWillEnterForeground:(UIApplication *)application
- {
- // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
- }
- - (void)applicationDidBecomeActive:(UIApplication *)application
- {
- // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
- }
- - (void)applicationWillTerminate:(UIApplication *)application
- {
- // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
- }
- //托管对象
- -(NSManagedObjectModel *)managedObjectModel
- {
- if (_managedObjectModel!=nil) {
- return _managedObjectModel;
- }
- // NSURL* modelURL=[[NSBundle mainBundle] URLForResource:@"CoreDataExample" withExtension:@"momd"];
- // _managedObjectModel=[[NSManagedObjectModel alloc] initWithContentsOfURL:modelURL];
- _managedObjectModel=[[NSManagedObjectModel mergedModelFromBundles:nil] retain];
- return _managedObjectModel;
- }
- //托管对象上下文
- -(NSManagedObjectContext *)managedObjectContext
- {
- if (_managedObjectContext!=nil) {
- return _managedObjectContext;
- }
- NSPersistentStoreCoordinator* coordinator=[self persistentStoreCoordinator];
- if (coordinator!=nil) {
- _managedObjectContext=[[NSManagedObjectContext alloc] initWithConcurrencyType:NSMainQueueConcurrencyType];
- [_managedObjectContext setPersistentStoreCoordinator:coordinator];
- }
- return _managedObjectContext;
- }
- //持久化存储协调器
- -(NSPersistentStoreCoordinator *)persistentStoreCoordinator
- {
- if (_persistentStoreCoordinator!=nil) {
- return _persistentStoreCoordinator;
- }
- // NSURL* storeURL=[[self applicationDocumentsDirectory] URLByAppendingPathComponent:@"CoreaDataExample.CDBStore"];
- // NSFileManager* fileManager=[NSFileManager defaultManager];
- // if(![fileManager fileExistsAtPath:[storeURL path]])
- // {
- // NSURL* defaultStoreURL=[[NSBundle mainBundle] URLForResource:@"CoreDataExample" withExtension:@"CDBStore"];
- // if (defaultStoreURL) {
- // [fileManager copyItemAtURL:defaultStoreURL toURL:storeURL error:NULL];
- // }
- // }
- NSString* docs=[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)lastObject];
- NSURL* storeURL=[NSURL fileURLWithPath:[docs stringByAppendingPathComponent:@"CoreDataExample.sqlite"]];
- NSLog(@"path is %@",storeURL);
- NSError* error=nil;
- _persistentStoreCoordinator=[[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:[self managedObjectModel]];
- if (![_persistentStoreCoordinator addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:storeURL options:nil error:&error]) {
- NSLog(@"Error: %@,%@",error,[error userInfo]);
- }
- return _persistentStoreCoordinator;
- }
- //-(NSURL *)applicationDocumentsDirectory
- //{
- // return [[[NSFileManager defaultManager] URLsForDirectory:NSDocumentDirectory inDomains:NSUserDomainMask] lastObject];
- //}
- @end
- #import <UIKit/UIKit.h>
- #import "AppDelegate.h"
- @interface ViewController : UIViewController
- @property (retain, nonatomic) IBOutlet UITextField *nameText;
- @property (retain, nonatomic) IBOutlet UITextField *ageText;
- @property (retain, nonatomic) IBOutlet UITextField *sexText;
- @property(nonatomic,retain)AppDelegate* myAppDelegate;
- - (IBAction)addIntoDataSource:(id)sender;
- - (IBAction)query:(id)sender;
- - (IBAction)update:(id)sender;
- - (IBAction)del:(id)sender;
- #import "ViewController.h"
- #import "User.h"
- @interface ViewController ()
- @end
- @implementation ViewController
- - (void)viewDidLoad
- {
- [super viewDidLoad];
- // Do any additional setup after loading the view, typically from a nib.
- _myAppDelegate=(AppDelegate *)[[UIApplication sharedApplication] delegate];
- }
- - (void)didReceiveMemoryWarning
- {
- [super didReceiveMemoryWarning];
- // Dispose of any resources that can be recreated.
- }
- - (void)dealloc {
- [_nameText release];
- [_ageText release];
- [_sexText release];
- [super dealloc];
- }
- //插入数据
- - (IBAction)addIntoDataSource:(id)sender {
- User* user=(User *)[NSEntityDescription insertNewObjectForEntityForName:@"User" inManagedObjectContext:self.myAppDelegate.managedObjectContext];
- [user setName:_nameText.text];
- [user setAge:[NSNumber numberWithInteger:[_ageText.text integerValue]]];
- [user setSex:_sexText.text];
- NSError* error;
- BOOL isSaveSuccess=[_myAppDelegate.managedObjectContext save:&error];
- if (!isSaveSuccess) {
- NSLog(@"Error:%@",error);
- }else{
- NSLog(@"Save successful!");
- }
- }
- //查询
- - (IBAction)query:(id)sender {
- NSFetchRequest* request=[[NSFetchRequest alloc] init];
- NSEntityDescription* user=[NSEntityDescription entityForName:@"User" inManagedObjectContext:_myAppDelegate.managedObjectContext];
- [request setEntity:user];
- // NSSortDescriptor* sortDescriptor=[[NSSortDescriptor alloc] initWithKey:@"name" ascending:YES];
- // NSArray* sortDescriptions=[[NSArray alloc] initWithObjects:sortDescriptor, nil];
- // [request setSortDescriptors:sortDescriptions];
- // [sortDescriptions release];
- // [sortDescriptor release];
- NSError* error=nil;
- NSMutableArray* mutableFetchResult=[[_myAppDelegate.managedObjectContext executeFetchRequest:request error:&error] mutableCopy];
- if (mutableFetchResult==nil) {
- NSLog(@"Error:%@",error);
- }
- NSLog(@"The count of entry: %i",[mutableFetchResult count]);
- for (User* user in mutableFetchResult) {
- NSLog(@"name:%@----age:%@------sex:%@",user.name,user.age,user.sex);
- }
- [mutableFetchResult release];
- [request release];
- }
- //更新
- - (IBAction)update:(id)sender {
- NSFetchRequest* request=[[NSFetchRequest alloc] init];
- NSEntityDescription* user=[NSEntityDescription entityForName:@"User" inManagedObjectContext:_myAppDelegate.managedObjectContext];
- [request setEntity:user];
- //查询条件
- NSPredicate* predicate=[NSPredicate predicateWithFormat:@"name==%@",@"chen"];
- [request setPredicate:predicate];
- NSError* error=nil;
- NSMutableArray* mutableFetchResult=[[_myAppDelegate.managedObjectContext executeFetchRequest:request error:&error] mutableCopy];
- if (mutableFetchResult==nil) {
- NSLog(@"Error:%@",error);
- }
- NSLog(@"The count of entry: %i",[mutableFetchResult count]);
- //更新age后要进行保存,否则没更新
- for (User* user in mutableFetchResult) {
- [user setAge:[NSNumber numberWithInt:12]];
- }
- [_myAppDelegate.managedObjectContext save:&error];
- [mutableFetchResult release];
- [request release];
- }
- //删除
- - (IBAction)del:(id)sender {
- NSFetchRequest* request=[[NSFetchRequest alloc] init];
- NSEntityDescription* user=[NSEntityDescription entityForName:@"User" inManagedObjectContext:_myAppDelegate.managedObjectContext];
- [request setEntity:user];
- NSPredicate* predicate=[NSPredicate predicateWithFormat:@"name==%@",@"chen"];
- [request setPredicate:predicate];
- NSError* error=nil;
- NSMutableArray* mutableFetchResult=[[_myAppDelegate.managedObjectContext executeFetchRequest:request error:&error] mutableCopy];
- if (mutableFetchResult==nil) {
- NSLog(@"Error:%@",error);
- }
- NSLog(@"The count of entry: %i",[mutableFetchResult count]);
- for (User* user in mutableFetchResult) {
- [_myAppDelegate.managedObjectContext deleteObject:user];
- }
- if ([_myAppDelegate.managedObjectContext save:&error]) {
- NSLog(@"Error:%@,%@",error,[error userInfo]);
- }
- }
- @end
对于多线程它是不安全的,需要进行特殊处理下次再说吧
(五)CoreData 使用 (转)的更多相关文章
- CoreData的介绍和使用
一.CoreData是什么? CoreData是iOS SDK里的一个很强大的框架,允许程序员以面向对象的方式存储和管理数据.使用CoreData框架,程序员可以轻松有效地通过面向对象的接口管理数据 ...
- iOS原生数据存储策略
一 @interface NSCache : NSObject Description A mutable collection you use to temporarily store transi ...
- CoreData 从入门到精通(五)CoreData 和 TableView 结合
我们知道 CoreData 里存储的是具有相同结构的一系列数据的集合,TableView 正好是用列表来展示一系列具有相同结构的数据集合的.所以,要是 CoreData 和 TableView 能结合 ...
- 数据持久化(五)之CoreData
@简单的说,Core Data就是能够存储到磁盘的对象图,[...]Core Data能够帮我们做非常多任务作.它能够作为软件的整个模型层. 它不只在磁盘上存储数据.也把我们须要的数据对象读取到内存中 ...
- iOS基本数据库存储方式 - CoreData
CoreData 创建模型文件的过程 1.选择模板 2.添加实体 3.添加实体的属性[注意]属性的首字母必须小写 一.CoreData管理类(必备以下三个类对象) 1.CoreData数据操作的上下文 ...
- CoreData教程
网上关于CoreData的教程能搜到不少,但很多都是点到即止,真正实用的部分都没有讲到,而基本不需要的地方又讲了太多,所以我打算根据我的使用情况写这么一篇实用教程.内容将包括:创建entity.创建r ...
- CoreData总结
Core Data,它提供了对象-关系映射(ORM)的功能,即能够将OC对象转化成数据,保存在SQLite数据库文件中,也能够将保存在数据库中的数据还原成OC对象.在此数据操作期间,我们不需要编写任何 ...
- iOS五种本地缓存数据方式
iOS五种本地缓存数据方式 iOS本地缓存数据方式有五种:前言 1.直接写文件方式:可以存储的对象有NSString.NSArray.NSDictionary.NSData.NSNumber,数据 ...
- iOS CoreData技术学习资源汇总
一.CoreData学习指引 1. 苹果官方:Core Data Programming Guide 什么是CoreData? 创建托管对象模型 初始化Core Data堆栈 提取对象 创建和修改自定 ...
随机推荐
- 动画Animation
动画分类:Animation 单一动画 AnimationSet 复合动画 AnimationSet是Animation的实现子类,Animation是一个抽象类,他的实现子类主要有如下几种: 主要有 ...
- 反射-优化及程序集等(用委托的方式调用需要反射调用的方法(或者属性、字段),而不去使用Invoke方法)
反射-优化及程序集等(用委托的方式调用需要反射调用的方法(或者属性.字段),而不去使用Invoke方法) 创建Delegate (1).Delegate.CreateDelegate(Type, ...
- php 执行外部命令exec() system() passthru()
php 执行部命令exec() system() passthru() 通常用c写一个外部小程序,然后使用上述命令可以在php中调用 1. exec() string exec ( string $c ...
- java 内部类3(匿名内部类)
匿名内部类: 1.没有类名的类就叫匿名内部类 2.好处:简化书写. 3.使用前提:必须有继承或实现关系......不要想着你自己没有钱你没可是你爸有 4.一般用于于实参.(重点) class Oute ...
- lambda表達式
lambda简介 lambda运算符:所有的lambda表达式都是用新的lambda运算符 " => ",可以叫他,“转到”或者 “成为”.运算符将表达式分为两部分,左边指定 ...
- from __future__ import absolute_import
from __future__ import absolute_import 这样以后:局部的包将不能覆盖全局的包, 本地的包必须使用相对引用了. 例: from celery import Cele ...
- asp.net 使用UrlRewritingNet.UrlRewriter组件URL重写,伪静态详解
目录 URL重写的业务需求 ReWritingNet组件主要功能 配置IIS(IIS7/8环境下) 程序代码 重写规则 一,URL重写的业务需求 顾客可以直接用浏览器bookmark功能将页面连结储存 ...
- html5的标签
1.article与section div的区别 当一个标签只是为了样式化或者方便脚本使用时,应该使用 div . section 表示一段专题性的内容,一般会带有标题.,section 应用的典型场 ...
- groovy基础
字符串字面值 def age=25 log.info 'My age is ${age}' log.info "my age is \${age}" log.info " ...
- PHP生成word的三种方式
摘要: 最近工作遇到关于生成word的问题 现在总结一下生成word的三种方法. btw:好像在博客园发表博客只要是标题带PHP的貌似点击量都不是很高(哥哥我标题还是带上PHP了),不知道为什么,估计 ...