无法将数据分配给 nsmutableDictionary 或 nsdictionary

发布于 2024-11-23 18:08:03 字数 424 浏览 0 评论 0原文

在下面的代码中,我只是分配从 api 调用返回的字符串值。将字符串值分配到 .h 文件中已声明的第 3 行的 loginResultArray 中。之后,当我将该数组移动到第四行的字典中时,字典值不会被存储。当我移动时,值没有存储在字典中。有人可以回答我吗?

NSDictionary *resultDict=[[NSDictionary alloc]init];
SBJSON *parser = [[SBJSON alloc] init];
loginResultArray=(NSMutableArray*)[parser objectWithString:jsonValue];
NSMutableDictionary *dict=(NSMutableDictionary *)[loginResultArray objectAtIndex:0];

In the code below I just assign string value that has been return form the api call. Assign the string value into the loginResultArray in the 3rd line which has been declared in the .h file. After that when I move that array into dictionary in the 4th line the dictionary value not stored. When I moved the values are not stored in the dictionary. Can any one please answer me?

NSDictionary *resultDict=[[NSDictionary alloc]init];
SBJSON *parser = [[SBJSON alloc] init];
loginResultArray=(NSMutableArray*)[parser objectWithString:jsonValue];
NSMutableDictionary *dict=(NSMutableDictionary *)[loginResultArray objectAtIndex:0];

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

勿忘心安 2024-11-30 18:08:03

保留loginResultArray的属性,综合它,然后执行以下操作:

self.loginResultArray=(NSMutableArray*)[parser objectWithString:jsonValue];

Make the property of loginResultArray retain, synthesize it and then do the following:

self.loginResultArray=(NSMutableArray*)[parser objectWithString:jsonValue];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文