是否有适用于iOS的数据绑定机制? [英] Is there any data binding mechanism available for iOS?

查看:183
本文介绍了是否有适用于iOS的数据绑定机制?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在.NET中,我只是像DataForm.Source = Object这样做,然后发生魔法。平台将数据从ui文件更改为对象属性,进行验证等。可以用Cocoa Touch和CoreData对象做类似的事情吗?

解决方案

Cocoa中最接近的是Key-Value Observing。在桌面Cocoa框架中,您可以使用绑定将用户界面元素挂接到底层对象,以便对象或UI元素中的更改反映在另一个对象中。



可可在iOS上没有这种UI绑定,您仍然可以使用键值观察将数据模型中的更改与UI元素进行同步,如下所述:



http://developer.apple.com /library/iOS/#documentation/General/Conceptual/Devpedia-CocoaApp/KVO.html


In .NET I just do something like DataForm.Source = Object and then magic happens. Platform routes data changes from ui fileds to object properties, does validation and so on. Can I do something similar with Cocoa Touch and CoreData objects?

解决方案

The closest thing in Cocoa is 'Key-Value Observing'. In the desktop Cocoa framework you can use bindings to hook user interface elements up to underlying objects so that changes in the objects or UI elements are reflected in the other.

Whilst Cocoa on iOS doesn't have this sort of UI bindings, you can still use 'Key-Value Observing' to synchronise changes in the data model with UI elements as described here:

http://developer.apple.com/library/iOS/#documentation/General/Conceptual/Devpedia-CocoaApp/KVO.html

这篇关于是否有适用于iOS的数据绑定机制?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆