我正在向 NSArray 添加键值字符串,但它们的添加顺序错误,这让我相信这是错误的做事方式 -
我的 json 采用以下格式:
[{
"story1":
{data in here}
"story2":
{data in here}....
在我的代码中,我希望在 NSArray 中获取story1和story2(以及更多)的字符串值,我实现了但它们的顺序相反-story2,story1:
NSArray *jsonArr = [NSJSONSerialization JSONObjectWithData:theData options:kNilOptions error:&error];
for (NSString *pItem in [jsonArr objectAtIndex:0]) {
NSLog(@"Product: %@", pItem);
}
有没有更好的方法来做到这一点,如果没有,我该如何反转数组?