Skip to content

Instantly share code, notes, and snippets.

@dreampiggy
Forked from syzdek/cli-nsrunloop.m
Created March 29, 2019 19:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dreampiggy/6bb531d87025a5273130627f86bec4fb to your computer and use it in GitHub Desktop.
Save dreampiggy/6bb531d87025a5273130627f86bec4fb to your computer and use it in GitHub Desktop.
Creating an NSRunLoop for a command line utility.
#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