我的Mac App中有一个NSDatePicker对象(仅限小时,分钟和秒)。我已将所有内容联系起来,我唯一的问题是从NSDatePicker对象中检索日期/字符串的AppleScript语法是什么?我想使用AppleScript关键字“说”然后说出所选的日期。在我的应用程序GUI中按下“发言日期”按钮时,将执行AppleScript代码。
谢谢。
...最佳SL
答案 0 :(得分:0)
在你的Cocoa应用程序中,尝试这样的事情:
NSAppleScript *script = [[NSAppleScript alloc] initWithSource:[NSString stringWithFormat:@"say \"%@\"", [[yourDatePicker dateValue] description]]];
[script executeAndReturnError:nil];