摘要:
第三方函式庫json使用方式以Facebook的Open Graph Protocol為例,首先我們必須先取得JSON字串:NSURL *url = [NSURL URLWithString:@"http://graph.facebook.com/cyberbuzz"];NSString *JSONString = [NSString stringWithContentsOfURL:url encoding:NSUTF8StringEncoding error:nil];再來便是呼叫json-framework所提供的方法來解析字串,將解析的結果儲存在NSDictionar 阅读全文