NSArray的初始化从NSDictionary的数据(Initialize NSArray wit

2019-10-19 03:43发布

我从URL接收数据,把它的NSDictionary,然后我需要创建的NSArray为每个标签。 我的NSDictionary的样子:

(
        {
        id =         {
            text = 1;
        };
        logo =         {
            text = "url 1";
        };
        name =         {
            text = "some name 1";
        };
    },
        {
        id =         {
            text = 2;
        };
        logo =         {
            text = "url 2";
        };
        name =         {
            text = "some name 2";
        };
    },
        {
        id =         {
            text = 3;
        };
        logo =         {
            text = "url 3";
        };
        name =         {
            text = "some name 3";
        };
    }   
)

我想有阵列这样的:arrLogo =(@ “URL 1”,@ “URL 2”, “URL 3”)。

我在做下一个: arrName=[[dict objectForKey:@"name"] valueForKey:@"text"];

但是Xcode中给我一个错误:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSArrayM objectForKey:]: unrecognized selector sent to instance

在我试图初始化数组的代码问题,它看起来像我的字典组成阵列。 如何正确地提取数据?

Answer 1:

对于这一点,你必须通过你有数组对象进行迭代。 您可以使用快速列举如

    for(object in JsonArray){

    NSString *value = [object valueForKey:@"logo"]valueForKey:@"text"]];

     //Add this value  to your array 
    }
}

希望这可以帮助。



Answer 2:

你必须得到JSONResponse是NSArray没有NSDictionary
你可以分析你喜欢这个JSON响应...

NSMutableArray * tmpAry = your json response;
NSMutableArray * urlAry = [[NSMutableArray alloc] init];

for (int i=0; i<tmpAry.count; i++) {
     NSMutableDictionary * tmpDictn = [tmpAry objectAtIndex:i];
     [urlAry  addObject:[[tmpDictn objectForKey:@"logo"] valueForKey:@"text"]];
 }
NSLog(@"urlAry : %@",urlAry);

日志显示:

urlAry : (
            url 1,
            url 2,
            url 3
            )


文章来源: Initialize NSArray with data from NSdictionary