思路:将NSObject转化为NSData,然后将NSData存入到Core Data中
现有两个自定义的类:Person和Birthday,都需要使用NSCoding,实现initWithCoder和encodeWithCoder两个方法。
Core Data实现
添加数据:
AppDelegate *appDelegate = [[UIApplication sharedApp...
分类:
移动开发 时间:
2014-11-04 19:39:23
阅读次数:
288
首先,创建一个UIView对象有两种方法:IB方式和编码方式。1、IB(Interface Builder)方式:即从nib文件中加载视图,此时会调用该view对象的initWithCoder方法,接着调用awakeFromNib方法CMButton *button = [[[NSBundle .....
分类:
其他好文 时间:
2014-09-12 19:05:13
阅读次数:
233
//当你通过代码创建控件就会调用这个方法- (id)initWithFrame:(CGRect)frame{ self = [super initWithFrame:frame]; if (self) { [self setup]; } return self;}//当你通过storyboared或...
分类:
其他好文 时间:
2014-09-11 22:19:52
阅读次数:
273
// .h文件#import @interface NSCodingProtocolHelper : NSObject+(void)encodeWithCoder:(NSCoder *)aCoder andObj:(id)obj;+(id)initWithCoder:(NSCoder *)aDeco...
分类:
其他好文 时间:
2014-08-30 20:20:41
阅读次数:
175
第一、initWithNibName这个方法是在controller的类在IB中创建,但是通过Xcode实例化controller的时候用的.
第二、initWithCoder 是一个类在IB中创建但在xocde中被实例化时被调用的.比如,通过IB创建一个controller的nib文件,然后在xcode中通过 initWithNibName来实例化这个controller,那么这个cont...
分类:
其他好文 时间:
2014-05-23 00:48:18
阅读次数:
424