delegate

导航

 

2015年4月29日

摘要: 使用ASIHttpRequest第三库,需要配置二,上传数据功能使用ASIFromDataRequest(可以上传二进制和字符串给服务器)下面来牛刀小试//建立一个工程,导入第三方库,在AppDelegate.h#import #import "ASIFormDataRequest.h"@inter... 阅读全文
posted @ 2015-04-29 19:05 jsonUserList 阅读(385) 评论(0) 推荐(0) 编辑
 
摘要: 1 //仅仅声明属性的类,称为实体类(模型类)2 //Student.h中声明属性3 @property(strong,nonatomic)NSString *name;4 @property(assign,nonatomic)int age;5 @property(strong,nonatomic... 阅读全文
posted @ 2015-04-29 17:43 jsonUserList 阅读(316) 评论(0) 推荐(0) 编辑
 
摘要: 1 //KVC(Key Value Coding) 2 //KVC的作用给某个对象的属性赋值,和点语法中的赋值的作用相同 3 Student *stu=[[Student alloc]init]; 4 [stu setValue:@"xiaowang" forKey:@"name"]; 5 NSL... 阅读全文
posted @ 2015-04-29 17:03 jsonUserList 阅读(216) 评论(0) 推荐(0) 编辑