ApplescriptObjC - 在标签上显示文本字段文本

ApplescriptObjC - display text field text on a label

我已经卡在这个问题很多天了,我找不到解决方案,ApplescriptObjC 的文档在网上似乎很低,我想做的是使用 ApplescriptObjC 将文本字段中的文本复制到标签中Xcode 4.6 这里是我的代码和绑定:

我收到这个错误

2016-08-05 16:10:32.114 BoxEye[12604:303] *** -[AppDelegate selectSource:]: Can’t make «class ocid» id «data optr00000000C04AF40901000000» into type string. (error -1700)

property parent : class "NSObject"
property myLabel : missing value
property textFeild: missing value


on selectSource_(sender) 

       myLabel's setStringValue_(textFeild)

end selectSource_

我会尝试做

myLabel's setStringValue_((textfield's stringValue()) as text)