我有一个“Image Well”,我试图通过Applescript填充ApplescriptObjC。
我的代码看起来像
script AppDelegate
property parent : class "NSObject"
property myImageView : missing value
set myImage to NSImage's alloc()'s initWithContentsOfFile_("/Users/xxx/Desktop/red.png")
myImageView's setImage_(myImage)
end script
但是图像从未在“myImageView”图像中显示(它们在xib文件中链接)。
答案 0 :(得分:1)
对此行稍作修改:
set myImage to current application's NSImage's alloc's initWithContentsOfFile_("/Users/xxx/Desktop/red.png")