我需要能够实现以下方法:

  • 关闭
  • 重启
  • 注销
  • sleep

  • 在 Mac 上,我使用的是 XCode,但似乎无法找出执行这些操作的代码。

    有人可以帮我从这里出去吗?

    谢谢

    最佳答案

    一种简单/懒惰的方法是通过一些简单的内联 Applescript:

    NSString *scriptAction = @"restart"; // @"restart"/@"shut down"/@"sleep"/@"log out"
    NSString *scriptSource = [NSString stringWithFormat:@"tell application \"Finder\" to %@", scriptAction];
    NSAppleScript *appleScript = [[NSAppleScript alloc] initWithSource:scriptSource];
    NSDictionary *errDict = nil;
    if (![appleScript executeAndReturnError:&errDict]) {
        NSLog(@"%@", errDict);
    }
    

    关于cocoa - 关闭 Mac 目标 C,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4505632/

    10-13 22:29