Created
July 31, 2012 21:36
-
-
Save syzdek/3220789 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
Please see the following for a object-oriented approach: https://github.com/trojanfoe/RunLoopController