保持命令行工具的活力

时间:2012-02-25 23:38:01

标签: objective-c command-line-tool

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

这是我的代码:

#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;
}

2 个答案:

答案 0 :(得分:23)

您需要使用CFRunLoop或NSRunLoop进入runloop。

尝试:

[[NSRunLoop currentRunLoop] run];

答案 1 :(得分:2)

在Swift 4中,

RunLoop.current.run()

干杯。