摘要:
/** 运行时(Runtime): * 苹果官方一套C语言库 * 能做很多底层操作(比如访问隐藏的一些成员变量\成员方法....) */ #import unsigned int count = 0 Ivar ivars = class_copyIvarList([UITextField class],&count); for(int i = 0; i < count;... 阅读全文
摘要:
// 调用系统通讯录需要遵循两个代理ABPeoplePickerNavigationControllerDelegate,UINavigationControllerDelegate 相关类为ABPeoplePickerNavigationController // 系统通讯录自带导航栏,所有要model出来 // 初始化 ABPeoplePickerNavigationContro... 阅读全文
摘要:
#import @interface User : NSObject //遵循NSCoding协议 /** name */ @property (nonatomic, copy) NSString *name; /** age */ @property (nonatomic, assign) NSInteger age; //自定义初始化方法 - (instancetype)ini... 阅读全文