SmartCodable is a data parsing library based on Codable. It is simple to use, with robust compatibility being one of its main features. SmartCodable 是基于Codable实现的数据解析库。简单易用,强悍的兼容性是SmartCodable的主要特点。 表层API和功能几乎和HandyJSON一致,支持快速的迁移。
你好,创建model继承SmartCodable时候,model里面的属性支持使用官方Combine框架里面的@Published嘛?
如下面
class UserModel: SmartCodable {
@Published var age: Int?
@Published var name: String?
}
你好,创建model继承SmartCodable时候,model里面的属性支持使用官方Combine框架里面的@Published嘛? 如下面 class UserModel: SmartCodable { @Published var age: Int? @Published var name: String? }
然后使用的时候,UserModel.deserialize(from: json)后,就可以自动更新UI嘛?