CoreData单表使用

1.png
2.png

一、创建继承于 NSObject 的类来定义方法
例:类名为:DataBase

DataBase.h

#import "Entity+CoreDataClass.h"   // 导入实体的头文件
#import "AppDelegate.h" // 调用容器
// 定义方法
// 单例方法
+(instancetype)initData;

// 添加数据
-(void)addData:(NSDictionary *)dic;

// 删除数据
-(void)deleteData:(Entity *)data;

// 修改数据
-(void)changeData;

// 查询数据
-(NSMutableArray *)showArr;

DataBase.m

// 创建单例变量
static DataBase *dataBase = nil;
// 实现方法
// 单例方法
+(instancetype)initData
{
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        
        dataBase = [[DataBase alloc] init];
    });
    return dataBase;
}
+(instancetype)allocWithZone:(struct _NSZone *)zone
{
    if (!dataBase) {
        
        dataBase = [super allocWithZone:zone];
    }
    return dataBase;
}
-(id)copy
{
    return self;
}
-(id)mutableCopy
{
    return self;
}

// 添加数据
-(void)addData:(NSDictionary *)dic
{
    AppDelegate *app = (AppDelegate *)[[UIApplication sharedApplication]delegate];
    
    // 创建实体
    Entity *entity = [NSEntityDescription insertNewObjectForEntityForName:@"Entity" inManagedObjectContext:app.persistentContainer.viewContext];
    
    entity.name = [dic objectForKey:@"name"];
    entity.age = dic [@"age"];
    
    [app saveContext];
    
}

// 删除数据
-(void)deleteData:(Entity *)data
{
    AppDelegate *app = (AppDelegate *)[[UIApplication sharedApplication]delegate];
    
    [app.persistentContainer.viewContext deleteObject:data];
    
    // 调用保存方法
    [app saveContext];
}

// 修改数据
-(void)changeData
{
    // 调用容器
    AppDelegate *app = (AppDelegate *)[[UIApplication sharedApplication]delegate];
    
    [app saveContext];
}

// 查询数据
-(NSMutableArray *)showArr
{
    // 创建对象 调用容器
    AppDelegate *app = (AppDelegate *)[[UIApplication sharedApplication]delegate];
    
    // 抓取数据
    NSFetchRequest *request = [[NSFetchRequest alloc] init];
    
    // 从实体描述对象中抓取
    NSEntityDescription *enti = [NSEntityDescription entityForName:@"Entity" inManagedObjectContext:app.persistentContainer.viewContext];
    
    // 向实体抓取
    [request setEntity:enti];
    
    // 数组
    NSArray *array = [app.persistentContainer.viewContext executeFetchRequest:request error:nil];
    
    // 返回 array 报黄,进行深复制[array mutableCopy]
    return [array mutableCopy];
    
}

二 、创建一个继承于 UIView 的类构造视图界面
例:类名为:MyView
MyView.h
根据属性的个数创建对应的布局

// 定义属性
@property (nonatomic ,strong) UITextField *nameTf, *ageTf;

// 重写初始化方法
-(instancetype)initWithFrame:(CGRect)frame
{
    if (self = [super initWithFrame:frame]) {
        
        [self addSubview:self.nameTf];
        [self addSubview:self.ageTf];
    }
    return self;
}

// 懒加载
// 名字
-(UITextField *)nameTf
{
    if (!_nameTf) {
        
        _nameTf = [[UITextField alloc] initWithFrame:CGRectMake(0, 90, self.frame.size.width, 50)];
        _nameTf.borderStyle = UITextBorderStyleRoundedRect;
        _nameTf.placeholder = @"yly";
        _nameTf.textAlignment = NSTextAlignmentCenter;
    }
    return _nameTf;
}
// 年龄
-(UITextField *)ageTf
{
    if (!_ageTf) {
        
        _ageTf = [[UITextField alloc] initWithFrame:CGRectMake(0, 150, self.frame.size.width, 50)];
        _ageTf.borderStyle = UITextBorderStyleRoundedRect;
        _ageTf.placeholder = @"yly";
        _ageTf.textAlignment = NSTextAlignmentCenter;
    }
    return _ageTf;
}

三、 1、创建继承于 UITableViewController 的类 -- 例:类名为 MainTableViewController
2、创建继承于UIViewController的类 -- 例 :类名为 SecViewController
1)、在MainTableViewController.m中
导入头文件

#import "SecViewController.h"   // 展示视图
#import "Entity+CoreDataClass.h"    // 实体
#import "DataBase.h"    // 数据
// 创建可变数组
{
    NSMutableArray *array;
}
- (void)viewDidLoad {
    [super viewDidLoad];
    
    // 标题
    self.title = @"CoreData数据库";
    
    // 表格行高
    self.tableView.rowHeight = 80;
    
    // 初始化数组
    array = [NSMutableArray array];
    
    // 跳转按钮
    self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"跳转" style:UIBarButtonItemStylePlain target:self action:@selector(tiaozhuan)];
    
}
// 实现跳转按钮点击事件
-(void)tiaozhuan
{
    // 创建下一个页面的主页面
    SecViewController *secVC = [[SecViewController alloc] init];
    
    // 执行跳转 -- 左右侧滑
    [self.navigationController pushViewController:secVC animated:YES];
}

// 视图将要显示
-(void)viewWillAppear:(BOOL)animated
{
    // 调用数据库查询方法
    array = [[DataBase initData] showArr];
    
    // 刷新表格
    [self.tableView reloadData];
}

#pragma mark -
#pragma mark UITableViewDataSource
// 行数
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return array.count;
}
// 单元格
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    // 查找 cell
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@""];
    // 如果找不到就创建 cell
    if (cell == nil) {
        
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@""];
    }
    
    // 初始化对象
    Entity *en = array[indexPath.row];
    
    // 设置内容
    cell.textLabel.text = [NSString stringWithFormat:@"姓名:%@\n年龄:%@",en.name, en.age];
    
    // 自动换行
    cell.textLabel.numberOfLines = 0;
    
    // 返回 cell
    return cell;
    
}

// 点击表格跳转
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    // 创建下一面的主页面
    SecViewController *secV = [[SecViewController alloc] init];
    
    // 属性传值
    secV.entity = array[indexPath.row];
    
    // 跳转
    [self.navigationController pushViewController:secV animated:YES];
}

// 删除行
-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
    Entity *delEntity = array[indexPath.row];
    
    [[DataBase initData] deleteData:delEntity];
    
    // 调用查询方法
    array = [[DataBase initData] showArr];
    
    // 刷新表格
    [self.tableView reloadData];
}

【属性传值的地方会报错,是因为属性还没有定义,写完下面的SecViewController.h中定义的属性后就不会报错了】

2)、SecViewController.h
导入头文件

#import "Entity+CoreDataClass.h"  // 实体表的头文件
// 定义属性
@property (nonatomic ,strong) Entity *entity;

3)、SecViewController.m
导入头文件

#import "Entity+CoreDataClass.h"
#import "DataBase.h"    // 处理数据
#import "MyView.h"  // 视图

// 定义视图类的成员变量
{
    MyView *myView;
}
- (void)viewDidLoad {
    [super viewDidLoad];
    
    // 初始化视图
    myView = [[MyView alloc] initWithFrame:self.view.frame];
    myView.backgroundColor = [UIColor magentaColor];
    self.view = myView;
    
    // 传值
    myView.nameTf.text = self.entity.name;
    myView.ageTf.text = self.entity.age;
    
    // 判断添加标题
//    if (myView.nameTf.text.length <= 0) {
    if (!self.entity) {
    
        self.title = @"添加数据";
        // 创建添加按钮
        self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"添加" style:UIBarButtonItemStylePlain target:self action:@selector(didClickAdd)];
     
    }else{
    
        self.title = @"修改数据";
        // 创建修改按钮
        self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"修改" style:UIBarButtonItemStylePlain target:self action:@selector(didClickSave)];
        
    }
}
// 实现 添加按钮点击事件
-(void)didClickAdd
{
    // key 值和 value 值要相对应
    NSDictionary *dic = @{@"name":myView.nameTf.text, @"age":myView.ageTf.text};
    
    // 调用添加数据的方法
    [[DataBase initData] addData:dic];
    
    // 跳转回上一视图
    [self.navigationController popViewControllerAnimated:YES];
}

//  实现 修改按钮点击事件
-(void)didClickSave
{
    self.entity.name = myView.nameTf.text;
    self.entity.age = myView.ageTf.text;
    
    // 调用修改数据方法
    [[DataBase initData] changeData];
    
    // 跳转回上一视图
    [self.navigationController popViewControllerAnimated:YES];
    
}

AppDelegate.h中更改主窗口
导入头文件

#import "MainTableViewController.h"
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

    self.window.rootViewController = [[UINavigationController alloc] initWithRootViewController:[[MainTableViewController alloc] init]];
    
    return YES;
}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,463评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,868评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,213评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,666评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,759评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,725评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,716评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,484评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,928评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,233评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,393评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,073评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,718评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,308评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,538评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,338评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,260评论 2 352

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,647评论 18 139
  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 172,030评论 25 707
  • Java基础常见英语词汇(共70个)['ɔbdʒekt] ['ɔ:rientid]导向的 ...
    今夜子辰阅读 3,281评论 1 34
  • 秋风瑟瑟的,有落雨了,不巧的是,我把新买的雨伞落在了麦当劳,我只好掖着刚刚借来的《雪国》,搭上衣帽快步走回宿舍。 ...
    Frozen燎沉香阅读 241评论 0 1
  • (一) 小A省考完了,心情轻松了许多,七年相知的老友,每逢寒暑假都会出来坐坐聊天的那...
    Hey_Julie阅读 281评论 0 0