作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 mySQL 数据库和一个 php 脚本,该脚本从所述数据库返回表的内容。我将此数据作为字符串,并且能够将其放入数组中,但我不太确定如何将其放入自定义 NSObject 类中。我有什么办法可以做到这一点吗?
最佳答案
如果您的字符串是 JSON 对象数组,您可以使用 SBJsonParser 方法 objectWithString:
它将返回 NSDictionary 对象的 NSArray。然后,您可以循环遍历数组并从数组中的每个元素创建一个自定义对象。使用 NSDictionary 方法 objectForKey:
提取每个值。
SBJsonParser *json = [[SBJsonParser new] autorelease];
NSError *jsonError = nil;
NSArray *parsedJSON = [json objectWithString:response error:&jsonError];
// this example just creates a custom object from the first element in the array
NSDictionary dictionary = [parsedJSON objectAtIndex:0]
CustomObject *myCustomObject = [[CustomObject alloc] init];
myCustomObject.firstname = [dictionary objectForKey:@"firstname"];
myCustomObject.lastname = [dictionary objectForKey:@"lastname"];
关于mysql - SBJsonParser 将来自服务器的响应存储在自定义类中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8782332/
我是一名优秀的程序员,十分优秀!