Flex:数据绑定可以与 UITextField 一起使用吗?
数据绑定可以与 UITextField 一起使用吗?不幸的是,我得到的是变量而不是绑定数据。
[Bindable]
public var myString:String;
在函数中,其中 tf 是 UITextField:
myString = "blah blah blah"; 等等……
tf.text="{myString}";
它给了我 {myString} 而不是它的数据。
Does data binding work with the UITextField? Unfortunately, I'm getting the variable instead of the bound data.
[Bindable]
public var myString:String;
in a function, where tf is a UITextField:
myString = "blah blah blah";
blah blah...
tf.text="{myString}";
It's giving me {myString} instead of its data.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我明白了。原来我不需要“{}”。如果我使用:
tf.text= myString;
,它就会起作用Okay, I figured it out. It turned out that I didn't need the "{}". It works if I use:
tf.text= myString;