web-dev-qa-db-ja.com

JSONデータのNSStringをNSArrayに変換する

NSString配列をJSONの形式で格納しているNSStringがあります。 NSStringと呼ばれるcolorArrayの値は次のとおりです。

[{ "color":"Red" },{ "color":"Blue" },{ "color":"Yellow"}];

テーブルにデータを入力するために配列をインポートするテーブルビューもあります。以下のようにtableDataを配列にロードするとテーブルは機能しますが、NSStringtableData以下のように...

誰かアイデアはありますか?どうもありがとう!

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Initialize table data
    tableData = [NSArray arrayWithObjects:@"Red", @"Blue", @"Yellow", nil];
}
14
Brandon
// Your JSON data:
NSString *colorArray = @"[{ \"color\":\"Red\" },{ \"color\":\"Blue\" },{ \"color\":\"Yellow\"}]";
NSLog(@"colorArray=%@", colorArray);

// Convert to JSON object:
NSArray *jsonObject = [NSJSONSerialization JSONObjectWithData:[colorArray dataUsingEncoding:NSUTF8StringEncoding]
                                                      options:0 error:NULL];
NSLog(@"jsonObject=%@", jsonObject);

// Extract "color" values:
NSArray *tableData = [jsonObject valueForKey:@"color"];
NSLog(@"tableData=%@", tableData);

出力:

 colorArray = [{"color": "Red"}、{"color": "Blue"}、{"color": "Yellow"}] 
 jsonObject =(
 {
 color = Red; 
}、
 {
 color = Blue; 
}、
 {
 color = Yellow; 
} 
)
 tableData =(
 Red、
 Blue、
 Yellow 
 )

最後の手順では、-[NSArray valueForKey:]の特別な機能を使用して、配列の各オブジェクトのキーを使用してvalueForKey:を呼び出した結果を含む配列を返します。

41
Martin R

試す

- (void)viewDidLoad
{
    [super viewDidLoad];

    NSString *jsonString = ...//String representation of json 
    NSData *jsonData =  [jsonString dataUsingEncoding:NSUTF8StringEncoding];
    //colors is a NSArray property used as dataSource of TableView
    self.colors = [NSJSONSerialization JSONObjectWithData:jsonData
                                                  options:NSJSONReadingMutableContainers
                                                    error:nil];

}

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    // Return the number of sections.
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    // Return the number of rows in the section.
    return [self.colors count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

    NSDictionary *color = self.colors[indexPath.row];
    cell.textLabel.text = color[@"color"];

    return cell;
}
2
Anupdas
NSData * data = [colorArray dataUsingEncoding:NSUTF8StringEncoding]
NSDictionary *JSON = 
    [NSJSONSerialization JSONObjectWithData: data
                                    options: NSJSONReadingMutableContainers 
                                      error: &e];

NSArray *tableData = [JSON valueForKey:@"color"];

お役に立てれば..

1
lakesh

ios 5以上 を使用していると仮定すると、JSONシリアル化が組み込まれています。

NSArray *json = [NSJSONSerialization 
        JSONObjectWithData:[string dataUsingEncoding:NSUTF8StringEncoding]
        options:kNilOptions 
        error:&error];

Ios5より前は、 [〜#〜] sbjson [〜#〜] を使用して同じことを行うことができます:

NSArray *jsonObjects = [jsonParser objectWithString:string error:&error];
0
hd1

この方法でトリングを解析するだけです:

NSString *jsonString = @"[{\"color\":\"Red\" },{\"color\":\"Blue\" },{\"color\":\"Yellow\"}]";
NSData *jsonData = [jsonString dataUsingEncoding:NSUTF8StringEncoding];

NSError *error = nil;
NSArray *jsonArray = [NSJSONSerialization JSONObjectWithData:jsonData options:kNilOptions error:&error];

この後、あなたがしなければならないすべての値を取得するための辞書の配列があり、配列をループして各辞書を読み取ります

NSMutableArray *colorsArray = [NSMutableArray arrayWithCapacity:[jsonArray count]];

for (NSDictionary *colorDictionary in jsonArray) {

    NSString *colorString = [colorDictionary objectForKey:@"color"];
    [colorsArray addObject:colorString];
}

これで、colorsArrayは次のようにNSMutableArrayになります。

 [NSMutableArray arrayWithObjects:@"Red", @"Blue", @"Yellow", nil];
0
Manu

Webサービスからのデータの場合:

NSArray *tableData = [[NSJSONSerialization JSONObjectWithData:request.responseData options: NSJSONReadingMutableContainers error: &error] objectForKey:"yourKeyForColorArray"];
0
Prateek Prem