コマンドラインツールを永続的に実行するには?コマンドラインツールをそのまま使用する
これは私のコードです:
#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;
}
大文字のLを持つ 'NSRunLoop'でなければなりません。 – Tyilo
大文字を修正しました。 – EricS
それは、ありがとう! – Andy