我已经被困在这里很多天了,我找不到ApplescriptObjC的解决方案和文档在网上看起来很低,我想做的是使用Xcode 4.6中的ApplescriptObjC将文本从文本字段复制到标签这里是我的代码和我的绑定:
我收到此错误
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_
答案 0 :(得分:1)
我会尝试做
myLabel's setStringValue_((textfield's stringValue()) as text)