14

コマンドライン ツールを永久に実行し続けるにはどうすればよいでしょうか。

これは私のコードです:

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

2 に答える 2

24

CFRunLoop または NSRunLoop を使用してランループに入る必要があります。

試す:

[[NSRunLoop currentRunLoop] run];
于 2012-02-26T00:37:28.790 に答える