-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
请问swift 能用这个进行双向绑定么 #2
Comments
Swift也能使用, 只不过更新数据不能直接 object.property = xxx , 需要 object.setValue(xxx, forKey: "property") |
oc中的绑定是这样的
|
let view : UIView = UIView() 这里必须用 .setValue设值,不能 view.property 直接赋值 |
No description provided.
The text was updated successfully, but these errors were encountered: