Xcode8后CoreData的使用

2017-05-11  本文已影响26人  有缘人2830
E9322D5A-7317-4297-B55F-007B4D452E61.png

一、创建xxx.xcdatamodeld的可视化模型文件 eg:MyCoreData.xcdatamodeld
并且添加两个属性 name age

直接上代码:

import "ViewController.h"

import "AppDelegate.h"

import "FirstCoreData+CoreDataClass.h"

@interface ViewController ()<UITableViewDelegate,UITableViewDataSource>
/****** table ******/
@property (strong, nonatomic) UITableView *myTable;
/****** dataSourse ******/
@property (strong, nonatomic) NSMutableArray *dataSourse;

/****** appdelegate ******/
@property (strong, nonatomic) AppDelegate *myAppdelegate;
@end

@implementation ViewController

pragma mark - lazy

pragma mark - 系统

}

}

pragma mark - addData

}

}

pragma mark - table delegate datasourse

}

x下载地址:http://code.cocoachina.com/view/135025

上一篇下一篇

猜你喜欢

热点阅读