在我的 Mac 应用程序中,我试图根据我的应用程序中的一些操作来锁定我的 Mac。到目前为止,我只有一种方法可以让它进入睡眠状态,但不能锁定。目前我正在这样做:
let appleScript = NSAppleScript(source: "tell application \"Finder\" to sleep")
appleScript?.executeAndReturnError(nil)
请指导。
在我的 Mac 应用程序中,我试图根据我的应用程序中的一些操作来锁定我的 Mac。到目前为止,我只有一种方法可以让它进入睡眠状态,但不能锁定。目前我正在这样做:
let appleScript = NSAppleScript(source: "tell application \"Finder\" to sleep")
appleScript?.executeAndReturnError(nil)
请指导。