{"id":"104","name":"c"}, -6ren">
gpt4 book ai didi

iphone - 将返回的数据传递到数组,iOS

转载 作者:行者123 更新时间:2023-11-29 13:34:18 26 4
gpt4 key购买 nike

我正在使用 JSON,在解析时,我将返回值作为

> [{"id":"2","name":"a"}, {"id":"3","name":"b"},
> {"id":"104","name":"c"}, {"id":"4","name":"d"}]

我想在某个数组中包含“名称”,以便我可以在选择器 View 中显示名称。

从数组到 pickerview,我可以执行,但我在检索名称的值并将其放入数组时遇到问题。

最佳答案

jsonArray = [{"id":"2","name":"a"}, {"id":"3","name":"b"},
{"id":"104","name":"c"}, {"id":"4","name":"d"}]

NSMutableArray *nameArray = [[NSMutableArray alloc] initWithCapacity:0];

for(NSMutableDictionary *dict in jsonArray){
NSString *str = [dict objectForKey:@"name"];
if(str){
[nameArray addObject:str];
}
}

这是你的名字数组......希望这对你有帮助

关于iphone - 将返回的数据传递到数组,iOS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11048726/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com