0

私は反対の反応をしています

(
        {
        "first_name" = Akash;
        idprofile = 1;
        iduser = 1;
        "last_name" = Testing;
        picUrl = "http://qalina.acapglobal.com/kangatime/ktapp/profilepics/1/1_Jellyfish.jpg";
        "profile_picture_filepath" = "1_Jellyfish.jpg";
    },
        {
        "first_name" = testing;
        idprofile = 3;
        iduser = 1;
        "last_name" = tst;
        picUrl = "http://qalina.acapglobal.com/kangatime/ktapp/profilepics/1/3_Penguins.jpg";
        "profile_picture_filepath" = "3_Penguins.jpg";
    },
        {
        "first_name" = test;
        idprofile = 4;
        iduser = 1;
        "last_name" = test;
        picUrl = "http://qalina.acapglobal.com/kangatime/ktapp/profilepics/1/4_Chrysanthemum.jpg";
        "profile_picture_filepath" = "4_Chrysanthemum.jpg";
    },
        {
        "first_name" = prashant1;
        idprofile = 19;
        iduser = 1;
        "last_name" = kharade1;
        picUrl = "http://qalina.acapglobal.com/kangatime/ktapp/profilepics/1/19_Koala.jpg";
        "profile_picture_filepath" = "19_Koala.jpg";
    },
        {
        "first_name" = Priyank;
        idprofile = 68;
        iduser = 1;
        "last_name" = Jain;
        picUrl = "http://qalina.acapglobal.com/kangatime/ktapp/profilepics/1/68_P.jpg";
        "profile_picture_filepath" = "68_P.jpg";
    },
        {
        "first_name" = sdasd;
        idprofile = 106;
        iduser = 1;
        "last_name" = sdasd;
        picUrl = "http://qalina.acapglobal.com/kangatime/ktapp/profilepics/1/";
        "profile_picture_filepath" = "<null>";
    }
)

私がdisをした後

NSMutableArray *fNames = [NSMutableArray array];

for(NSDictionary *temp in responseArr)
{
    [fNames addObject:[temp objectForKey:@"first_name"]];

}
 NSLog(@"fNamesArray==>%@",fNames);


NSMutableArray *lNames = [NSMutableArray array];

for(NSDictionary *temp1 in responseArr)
{
    [lNames addObject:[temp1 objectForKey:@"last_name"]];
}
NSLog(@"lNamesArray==>%@",lNames);

私はdisを取得します:

fNamesArray==>( Akash、テスト、テスト、prashant1、Priyank、sdasd )

lNamesArray==>( テスト, tst, テスト, kharade1, Jain, sdasd )

fNamesArray は名で構成され、lNamesArray は姓で構成されます。今私がしなければならないことは、2 つの配列 (firstName + lastName) を組み合わせて、各プロファイルに関連するテーブルとイメージに表示し、テーブルの行に表示することです。

最初の行に含まれる必要があるように

アカッシュテスト

二列目

tst のテスト

等々...

どんな助けでも大歓迎です。ありがとう!!

4

1 に答える 1

0

以下で行った方がいいです...

NSMutableArray * fullNames = [[NSMutableArray alloc] init];
for(NSDictionary * temp in responseArr)
{{
    NSString * strFullName = [NSString stringWithFormat:@ "%@%@"、[temp objectForKey:@ "first_name"]、[temp1 objectForKey:@ "last_name"]];
    [fullNames addObject:strFullName]
}
 NSLog(@ "fNamesArray ==>%@"、fullNames);

関連する新しい質問のために挿入されました...

JSON応答から配列を取得するには、 以下に示すJSON配列文字列を作成する方法を教えてください。

于 2012-10-16T08:50:59.053 に答える