David.Shi

Results 4 comments of David.Shi

我好久没更新,也没上传到cocopod

Swift也能使用, 只不过更新数据不能直接 object.property = xxx , 需要 object.setValue(xxx, forKey: "property")

> > Swift也使用,但更新数据不能直接对象.property = xxx,需要 object.setValue(xxx, forKey: "property") > > oc中的绑定是这样的 > DVDataBind > ._inout(self.demoModel, @"text") > ._inout_ui(self.demoView.textField, @"text", UIControlEventEditingChanged) > ._out(self.demoView.label, @"text") > ._out_key_any(@"com.text", ^(NSString *text) { > NSString...