执行某些系统事件,Mac OS X
我想
- 通过我正在制作的应用程序关闭
- 重新启动
- 注销
- 睡眠
我的系统,我似乎找不到任何本机 Objective C 方法来做到这一点,这真的很困难。
谁能指导我最好的方法来做到这一点:
我已经尝试过:
NSString *scriptAction = @"restart"; // @"restart"/@"shut down"/@"sleep"/@"log out"
NSString *scriptSource = [NSString stringWithFormat:@"tell application \"Finder\" to %@", scriptAction];
NSAppleScript *appleScript = [[[NSAppleScript alloc] initWithSource:scriptSource] autorelease];
NSDictionary *errDict = nil;
if (![appleScript executeAndReturnError:&errDict]) {
//
}
一点运气都没有,也尝试过:
NSAppleScript* theScript = [[NSAppleScript alloc] initWithSource:
@"Tell application \"Finder\" to restart"];
if (theScript != NULL)
{
NSDictionary* errDict = NULL;
// execution of the following line ends with EXC
if (YES == [theScript compileAndReturnError: &errDict])
{
[theScript executeAndReturnError: &errDict];
}
[theScript release];
}
没有运气
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我使用以下代码已有 8 年多了,没有出现任何问题:
MDRestartShutdownLogout.h:
MDRestartShutdownLogout.m:
请注意,上述代码基于 技术问答 QA1134,但我的经过重新设计,使用
AESendMessage()
而不是AESend()< /代码>。
AESend()
位于HIToolbox.framework
中,而HIToolbox.framework
位于Carbon.framework
中,因此不可用于 64 位应用程序。 (AESendMessage()
是CoreServices
中AE.framework
的一部分)。I've been using the following code for over 8 years without issues:
MDRestartShutdownLogout.h:
MDRestartShutdownLogout.m:
Note that the above code is based on the code from Technical Q&A QA1134, but mine is re-worked to use
AESendMessage()
rather thanAESend()
.AESend()
is inHIToolbox.framework
, which is inCarbon.framework
and is therefore unavailable to 64-bit apps. (AESendMessage()
is part of theAE.framework
inCoreServices
).如果您从 GUI 会话登录,这肯定可以工作。
如果您仅从
ssh
会话等登录而没有 GUI,则它将无法工作。请更全面地描述您的情况,您遇到了什么样的错误等,否则我们无法帮助您。
That should definitely work if you are logged on from a GUI session.
It won't work if you're only logged on from the
ssh
session etc, without the GUI.Please describe your situation more fully, what kind of error you got, etc. Otherwise we can't help you.