JSON 转换工具 JSON2Anything
- 授权协议: MIT
- 开发语言: Objective-C Swift
- 操作系统: OS X
- 软件首页: https://github.com/tangplin/JSON2Anything
软件介绍
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]
}
]
}
]
}
]
}
]
}
