我确实设置了一个最小的应用程序,有没有办法向它发送控制台输入?或者如何阻止它循环并将控制权返回控制台?
int main(int argc, const char * argv[])
{
@autoreleasepool {
AppDelegate * delegate = [[AppDelegate alloc] init];
NSApplication * application = [NSApplication sharedApplication];
[application setDelegate:delegate];
[NSApp run];
// Get console input
}
return 0;
}