カスタム検索

2009年1月12日月曜日

よろしい、ならばiPhoneでJSONだ その2

Objective-CでJsonを取り扱うスニペットめもりんぐ

NSDictionaryとNSStringをいったりきたり

  1. // NSDictionaryからStringに  
  2. NSDictionary *dict = [NSDictionary dictionaryWithObjectsAndKeys:  
  3.                       @"The iPhone", @"Today",  
  4.                       @"The World", @"Tomorrow",  
  5.                       nil];  
  6. SBJSON *json = [SBJSON new];  
  7. json.humanReadable = YES;  
  8. NSLog([json stringWithObject:dict error:NULL]);  
  9.   
  10. // StringからNSDictionaryに  
  11. NSString *jsonString = @"{\"hoge\":\"foo\",\"wow\":[\"good\",\"cool\"]}";  
  12. id jsonObj = [json objectWithString:jsonString error:NULL];  
  13. if(jsonObj==NULL || jsonObj==nil) {  
  14.     printf("NULL dayo\n");  
  15. else {  
  16.     NSLog([json stringWithObject:jsonObj error:NULL]);  
  17. }  


jsonでパース出来るのは、ダブルクォートだけです、シングルコートはだめです。(これにずっと気づかなかった・・・)
objectWithStringの返り値はNSArrayだったりNSDictionaryだったりするので、idで受け取る必要があります。

0 件のコメント: