-
-
Save dreampiggy/6bb531d87025a5273130627f86bec4fb to your computer and use it in GitHub Desktop.
Creating an NSRunLoop for a command line utility.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <Foundation/Foundation.h> | |
int main(int argc, const char * argv[]) | |
{ | |
NSRunLoop * runLoop; | |
CLIMain * main; // replace with desired class | |
@autoreleasepool | |
{ | |
// create run loop | |
runLoop = [NSRunLoop currentRunLoop]; | |
main = [[CLIMain alloc] init]; // replace with init method | |
// kick off object, if required | |
[main start]; | |
// enter run loop | |
while((!(main.shouldExit)) && (([runLoop runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:2]]))); | |
}; | |
return(main.exitCode); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment