I’m writing an iphone application with JSON and am trying to turn JSON strings into objects (NOT Dictionaries or Arrays). In Java, thanks to Reflection, I can easily turn JSON into javabean instances like this: import net.sf.json.JSONObject; class MyBean { private String property; public String getProperty() { return property; } public void setProperty(String property) { […]
iPhone + JSON + Reflection
- Post author By user user
- Post date
- Categories In cocoa, iphone, json, objective-c, reflection
- 4 Comments on iPhone + JSON + Reflection