{//json 文件如下
"team" : [
{
"name":"Ray Wenderlich",
"title": "Site Admin",
"location": "Massanutten, VA",
"about": "Ray is an indie software developer currently focusing on iPhone and iPad development, and the administrator of this site. He’s the founder of a small iPhone development studio called Razeware, and is passionate both about making apps and teaching others the techniques to make them.\\n\\nWhen Ray’s not programming, he’s probably playing video games, role playing games, or board games.",
"image":"ray.png",
"web": "http://www.raywenderlich.com",
"twitter": "https://twitter.com/rwenderlich",
"facebook": "https://www.facebook.com/raywenderlich"
}]
}
//处理json数据
NSData *data = [NSData dataWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"TeamMembers" ofType:@"json"]];
NSDictionary *json = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:&error];
self.members = json[@"team"];
//fondation 数据 转换为json
NSDictionary *song = [NSDictionary dictionaryWithObjectsAndKeys:@"i can fly",@"title",@"4012",@"length",@"Tom",@"Singer", nil];
if ([NSJSONSerialization isValidJSONObject:song])
{
NSError *error;
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:song options:NSJSONWritingPrettyPrinted error:&error];
NSString *json =[[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];
NSLog(@"json data:%@",json);
}
文章介绍了Ray Wenderlich,一位专注于iPhone和iPad开发的独立软件开发者,同时也是该网站的管理员。他创立了一家小型的手机开发工作室Razeware,并热衷于制作应用和教授他人开发技巧。当Ray不编程时,他可能在玩电子游戏、角色扮演游戏或桌游。
1647

被折叠的 条评论
为什么被折叠?



