如何将此NSAppleScript示例重写为SBApplication或Native Cocoa代码?

时间:2014-02-28 11:56:01

标签: objective-c xcode macos cocoa applescript

例如,NSAppleScript对象就像这样使用。

NSString * st = @"tell application \"System Events\" to tell (process 1 where frontmost is true) \n"
            "click menu bar item 1 of menu bar 1 \n"
            "end tell";
[[NSAppleScript alloc] initWithSource:st]

[aps executeAndReturnError:nil]

看起来很简单,但我需要创建一个AppleScript字符串,这有点笨拙。有没有办法通过SBApplication或Cocoa API重写代码?

0 个答案:

没有答案