| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
12年前发布

Automatic Coder - 根据 JSON 自动生成对应的 Objective-C 处理代码

Automatic Coder 可根据 JSON 字符串自动生成对应的 Objective-C 处理代码。

示例代码:

   NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://zxapi.sinaapp.com"]];      NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];      NSDictionary *json = [data objectFromJSONData];        //init object      Person *person = [[Person alloc] initWithJson:json];      NSLog(@"%@",person.name);                //http://zhangxi.me      NSLog(@"%@",person.male?@"男":@"女");     //男      NSLog(@"%ld",person.girlFriends.count);   //3          //write to file      BOOL result = [NSKeyedArchiver archiveRootObject:person toFile:@"./person.data"];      NSLog(@"%@",result?@"success":@"failure");   //success          //read from file      Person *thePerson = [NSKeyedUnarchiver unarchiveObjectWithFile:@"./person.data"];        NSLog(@"%@",thePerson.name);                //http://zhangxi.me      NSLog(@"%@",thePerson.male?@"男":@"女");     //男      NSLog(@"%ld",thePerson.girlFriends.count);   ///3

项目主页:http://www.open-open.com/lib/view/home/1347433841897

 本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1347433841897.html
JSON iOS开发 移动开发