摘要:
系统自带的JSON解析 GET异步请求 POST异步请求 阅读全文
摘要:
layer的各种属性代码示例: 阅读全文
摘要:
1 #import "MyHandle.h" 2 3 static MyHandle *handle = nil; 4 @implementation MyHandle 5 // 传统写法 6 // 此时如果多个任务并发执行,他就不会满足单例的优点 7 //+ (MyHandle *)shareMyHandle { 8 // if (nil == handle) { 9... 阅读全文
摘要:
方式一:直接在@interface中的大括号中声明。 @interface MyTest : NSObject{ NSString *mystr; } 方式二:在@interface中声明,然后再在@property中声明。 @interface MyTest : NSObject{ NSStrin 阅读全文