JSON2AnythingJSON 转换工具
JSON2Anything (J2A) 可以把纯 JSON 转换成 NSObject 的子类,Cocoa 对象,枚举等等。
主要特性:
从服务端动态控制一个应用的 UI
修复服务端的 bugs
示例:
{
"UIView":[
{
"initWithFrame:":[ { "CGRect":[ 20,20,50,50 ] } ]
},
{
"setBackgroundColor:":[
{
"UIColor":[
{
"initWithRed:green:blue:alpha:": [
{"Double":[0.9] },
{"Double":[0.1] },
{"Double":[0.2] },
{"Double":[1.0]
}
]
}
]
}
]
}
]
}评论
