摘要: 创建一个UIView对象分四步: 1.创建一个view对象,并设置其大小 UIView *view = [[UIView alloc] initWithFrame:CGRectMake:(CGFloat x, CGFloat y, CGFloat width, CGFloat height); 2. 阅读全文
posted @ 2015-12-20 20:56 侯文超 阅读(267) 评论(1) 推荐(0) 编辑
摘要: 相同点: 都可以作为方法返回值类型 在initWithName:方法中是一样的,例如: - (id)initWithName:(NSString *)name; - (instancetype)initWithName:(NSString *)name; 编译器在编译时直接将id转换成instanc 阅读全文
posted @ 2015-12-20 20:31 侯文超 阅读(167) 评论(0) 推荐(0) 编辑