gpt4 book ai didi

objective-c - 使命令行工具保持事件状态

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

如何让命令行工具永远运行。

这是我的代码:

#import <Foundation/Foundation.h>

int main (int argc, const char * argv[])
{

@autoreleasepool {

[[NSDistributedNotificationCenter defaultCenter] addObserverForName:nil object:nil queue:nil usingBlock:^(NSNotification *notification)
{
NSLog(@"%@", notification);
}];

//Keep alive...

}
return 0;
}

最佳答案

您需要使用 CFRunLoop 或 NSRunLoop 进入一个运行循环。

尝试:

[[NSRunLoop currentRunLoop] run];

关于objective-c - 使命令行工具保持事件状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9449123/

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