gpt4 book ai didi

objective-c - 如何在 Objective-C 应用程序中自行退出?

转载 作者:太空狗 更新时间:2023-10-30 03:25:38 25 4
gpt4 key购买 nike

我有一个启动一些应用程序的 URLHandler,主要代码如下。

@implementation URLHandlerCommand

- (id)performDefaultImplementation {
NSString *urlString = [self directParameter];

NSLog(@"url :=: %@", urlString);

NSTask *task;
task = [[NSTask alloc] init];
[task setLaunchPath: @"/usr/bin/open"];

NSArray *arguments;
arguments = [NSArray arrayWithObjects: @"-a", @"Path Finder.app", urlString, nil];
[task setArguments: arguments];

NSPipe *pipe;
pipe = [NSPipe pipe];
[task setStandardOutput: pipe];

NSFileHandle *file;
file = [pipe fileHandleForReading];

[task launch];

return nil;
}

因为这个例程的目标是启动另一个应用程序,所以我想让这个 URLHandler 在启动一个应用程序后退出。我该怎么做?

最佳答案

  1. 您不必使用 NSTask 启动 open... open 只需调用 Launch Services ,其中一些功能可直接从 NSWorkspace 获得.

  2. 要退出,只需调用 [[NSApplication sharedApplication] terminate:nil]。参见 NSApplication documentation .

关于objective-c - 如何在 Objective-C 应用程序中自行退出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5048777/

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