カスタム検索

2009年1月14日水曜日

iPhoneでJsonをごにょごにょ

簡単なJSONを返すアクションを作成
  1. def json = {  
  2.   def jsonData=[["name":"任天堂","hard":"wii"],  
  3.                 ["name":"sony","hard":"PlayStation3"],  
  4.                 ["name":"Microsoft","hard":"XBOX360"]]  
  5.     
  6.   render(text:jsonData as JSON)  
  7. }  


ブラウザで確認すると、こんな感じのJSONデータが返ります。
  1. [{"name":"任天堂","hard":"wii"},{"name":"sony","hard":"PlayStation3"},{"name":"Microsoft","hard":"XBOX360"}]  


これをiPhoneでうけとってTableViewに表示します。
JSONを取得する部分
  1. - (void)getJSON {  
  2.  NSURL *jsonURL = [NSURL URLWithString:@"http://localhost:8080/jsonSample/test/json"];  
  3.  NSMutableString *jsonData = [NSMutableString stringWithContentsOfURL:jsonURL encoding:NSUTF8StringEncoding error:nil];  
  4.  [jsonData replaceOccurrencesOfString:@"'"  
  5.   withString:@"\""  
  6.   options:NSCaseInsensitiveSearch  
  7.   range:NSMakeRange(0,[jsonData length])];  
  8.   
  9.  NSLog(jsonData);  
  10.    
  11.  if (jsonData == nil) {  
  12.   UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Webservice Error" message:@"JSON Dataの取得に失敗しました。"  delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil];  
  13.   [alert show];  
  14.   [alert release];  
  15.  } else {  
  16.   SBJSON *json = [SBJSON new];  
  17.   json.humanReadable = YES;  
  18.     
  19.   id result = [jsonData JSONValue];   
  20.   NSLog([json stringWithObject:result error:NULL]);  
  21.     
  22.   webResult = [[NSMutableArray alloc] init];  
  23.     
  24.   NSEnumerator* enumerator;  
  25.   enumerator = [result objectEnumerator];  
  26.     
  27.   // while文を使って要素にアクセスする  
  28.   id obj;  
  29.   while (obj = [enumerator nextObject]) {  
  30.    [webResult addObject:obj];  
  31.   }  
  32.   printf("データ件数 %d",[webResult count]);  
  33.  }  
  34. }  


基本は前と一緒です。シングルクォートをダブルクォートに置換したりしてます。
webResultはクラスのフィールドです。
取得した値をループし、webResultへ追加していきます。

InterfaceBuilderでTableViewをおいて、Outletとdelegateを設定します。



dataSource、delegateをFile'sOwnerに設定し、クラスに定義したtableViewと連結します。
クラスにtableView用の定義をします。
  1. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {  
  2.  return [webResult count];  
  3. }  
  4.   
  5. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {  
  6.  UITableViewCell *cell;  
  7.  cell = [[UITableViewCell alloc] init];  
  8.  cell.text = [[webResult objectAtIndex:indexPath.row] objectForKey:@"name"];  
  9.  return cell;  
  10. }  
  11.   
  12. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {  
  13.  UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"あなたが選んだのは"  
  14.              message:[[webResult objectAtIndex:indexPath.row] objectForKey:@"hard"]  
  15.              delegate:self  
  16.                 cancelButtonTitle:@"OK"  
  17.                 otherButtonTitles: nil];  
  18.  [alert show];  
  19.  [alert release];  
  20. }  


上から順番に
numberOfRowsInSection : テーブルに何件あるかを返すメソッド
cellForRowAtIndexPath : 1行毎に表示するメソッド
didSelectRowAtIndexPath : 行を選択した時のアクション
です。

詳細はメモなんで略 :p

0 件のコメント: