gpt4 book ai didi

objective-c - NSAppleScript 和无响应的界面 - Objective-C

转载 作者:行者123 更新时间:2023-12-03 17:24:01 30 4
gpt4 key购买 nike

我想从我的应用程序中运行几行 applescript 代码。标准方法是使用 NSAppleScript 类。但是,由于该代码可能需要几分钟才能完成,因此我必须使用单独的线程,否则界面将停止。正如它所说,最大的问题是 here ,NSAppleScript类只能在主线程上运行。

因此,如果我在单独的线程上运行代码,我的应用程序就会崩溃;如果我在主线程上运行它,它就会停止。有什么想法吗?

另外,我考虑过使用 NSTask 和 osascript 命令,但我在某个地方(找不到链接)看到 osascript 不支持用户输入,例如对话框之类的东西。我不确定这是否属实,但如果属实,那么 osascript 就不是解决方案。

最佳答案

所以我最终为此编写了一个帮助程序,通过 NSTask 启动。这是代码,以防有人感兴趣:

对于启动器:

NSArray* args = [NSArray arrayWithObject: <<AS code here>>];

task = [NSTask new];
[task setLaunchPath: [[NSBundle mainBundle] pathForResource: @"ASHelper" ofType: @""]];
[task setArguments: args];
[task launch];

还有助手:

int main(int argc, const char * argv[])
{
@autoreleasepool {
NSString* source = [NSString stringWithCString: argv[1] length: strlen(argv[1])];
NSAppleScript* as = [[NSAppleScript alloc] initWithSource: source];
[as executeAndReturnError: nil];
}
return 0;
}

关于objective-c - NSAppleScript 和无响应的界面 - Objective-C,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12195203/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com