0

我如何转换这个 JSON 数组:

这是一个序列化的 JSON 数组

    2012-06-18 09:22:07.647 TableView[468:f803] (
                {
                "Countries" = Iceland;
                 "id"=9046567;
                  "name"=abceeeffdsg;


            },
                {
                "Countries" = Greenland;
                "id"=3524695;
                "name"=gsfjgfsethju;
    },
                {
                 "Countries" = Switzerland;
                 "id"=4613583;
                 "name"=hdfkdgs;
        )

但我需要将此数组转换为以下数组:

     {
                   NSArray* Countries =         (
                        Iceland,
                        Greenland,
                        Switzerland,
                    );
NSArray *id=(9046567,3524695,4613583 );
NSArray * name=(abceeeffdsg,gsfjgfsethju,hdfkdgs);
                }

否则我只是想在我的表格视图中将这些项目显示为一个单元格.. 任何人都可以提出一些代码并解释这一点....

4

1 回答 1

0

这会将所有国家/地区获取到一个数组中:

NSArray *countries = [myArrayFromJson valueForKey:@"Countries"];

请注意,您的第二个片段是NSDictionary一个键('Countries')和一个值数组。所以它不仅仅是“一个数组”......

所以,如果你真的想要这样,你可以这样做:

// After collecting the values into 'countries' array like above...
NSDictionary *countriesDict = [NSDictionary dictionaryWithObject:countries forKey:@"Countries"];
于 2012-06-18T07:42:44.110 回答