0

我尝试在 Calendar.app 中显示一个元素,以便激活日历并突出显示相应的事件。我知道该怎么做,但是一旦 Sandbox 开启,我就会得到

日历出现错误:发生特权冲突。

我的代码就是这样(甚至不尝试显示事件,而只是阅读一个日历):

import Cocoa

@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {
  func applicationDidFinishLaunching(aNotification: NSNotification) {
    let source = "tell application \"iCal\"\n set theCalendar to first calendar whose name = \"test\"\nend tell"
    let scriptObject = NSAppleScript(source: source)
    var errorDict: NSDictionary? = nil
    _ = scriptObject!.executeAndReturnError(&errorDict)
    print (errorDict)
  }
}

我的权利看起来像这样:

<dict>
    <key>com.apple.security.app-sandbox</key>
    <true/>
  <key>com.apple.security.scripting-targets</key>
  <dict>
    <key>com.apple.ical</key>
    <array>
      <string>com.apple.ical.read</string>
    </array>
  </dict>
</dict>

我也尝试过使用脚本桥,但也失败了(信息较少,但可能是相同的原因)。

4

1 回答 1

1

Calendar.app中的权利失败com.apple.security.scripting-targets似乎是一个错误(即使tell application "Calendar"在脚本中使用)。

但是,全局临时异常有效:

<key>com.apple.security.temporary-exception.apple-events</key>
<array>
  <string>com.apple.ical</string>
</array>
于 2016-06-15T09:25:12.353 回答