我正在用JSON编写一个iphone应用程序,并试图将JSON字符串转换为对象(NOT Dictionaries或Arrays).
在Java中,感谢Reflection,我可以轻松地将JSON转换为javabean实例,如下所示:
import net.sf.json.JSONObject; class MyBean { private String property; public String getProperty() { return property; } public void setProperty(String property) { this.property=property; } } // turn JSON string into a MyBean instance String str = "{\"property\":\"some value\"}"; JSONObject jsonObject = (JSONObject) JSONSerializer.toJSON( str ); JsonConfig jsonConfig = new JsonConfig(); jsonConfig.setRootClass( MyBean.class ); MyBean instance = (MyBean) JSONSerializer.toJava( jsonObject, jsonConfig );
我想知道这是否可能在objective-c中.我目前正在使用此 JSON框架,但如果有必要,我愿意切换.
谢谢,