एक कमांड लाइन उपकरण हमेशा के लिए चल रहा है।कमांड लाइन उपकरण को जीवित रखें
#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;
}
यह पूंजी एल के साथ 'NSRunLoop' होना चाहिए, लेकिन अन्यथा यह पूरी तरह से काम करता है। – Tyilo
पूंजीकरण फिक्स्ड। – EricS
वह था, धन्यवाद! – Andy