Monotouch数据绑定

时间:2012-01-02 19:34:01

标签: data-binding xamarin.ios uitextfield uilabel

如何在monotouch中将可观察属性绑定到UIlabel或UITextField

TextField.Bind()存在,但我无法使用。

这是参数:

UILabel.Bind (string binding, NSObject observable, string keyPath, NSDictionary options)

1 个答案:

答案 0 :(得分:0)

相应的Objective-C文档在这里:

http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/ApplicationKit/Protocols/NSKeyValueBindingCreation_Protocol/Reference/Reference.html

您需要知道的重要部分是您将监视(绑定)的值是什么,以及可从“observable”作为“keyPath”访问的keyPath是什么。一旦你有了这些,你可以填写其余部分。