摘要: GCD的基础 代码展示: 阅读全文
posted @ 2016-05-28 19:17 Leo-Wmw 阅读(171) 评论(0) 推荐(0) 编辑
摘要: UITableView UICollectionView //UICollectionViewLayout //UICollectionViewLayout决定了UICollectionView如何显示在界面上,Apple提供了一个最简单的默认layout对象:UICollectionViewFlo 阅读全文
posted @ 2016-05-28 17:13 Leo-Wmw 阅读(246) 评论(0) 推荐(0) 编辑
摘要: 系统自带的JSON解析 GET异步请求 POST异步请求 阅读全文
posted @ 2016-05-28 16:40 Leo-Wmw 阅读(194) 评论(0) 推荐(0) 编辑
摘要: layer的各种属性代码示例: 阅读全文
posted @ 2016-05-28 16:03 Leo-Wmw 阅读(4319) 评论(0) 推荐(0) 编辑
摘要: 1 #import "MyHandle.h" 2 3 static MyHandle *handle = nil; 4 @implementation MyHandle 5 // 传统写法 6 // 此时如果多个任务并发执行,他就不会满足单例的优点 7 //+ (MyHandle *)shareMyHandle { 8 // if (nil == handle) { 9... 阅读全文
posted @ 2016-05-28 15:48 Leo-Wmw 阅读(233) 评论(0) 推荐(0) 编辑
摘要: 方式一:直接在@interface中的大括号中声明。 @interface MyTest : NSObject{ NSString *mystr; } 方式二:在@interface中声明,然后再在@property中声明。 @interface MyTest : NSObject{ NSStrin 阅读全文
posted @ 2016-05-28 09:52 Leo-Wmw 阅读(572) 评论(0) 推荐(0) 编辑