Can a terminal application register for changes with the notification center? (I created a simple cocoa app and I am getting notification with the objective c equivalent for registering notificaitons)
I have a terminal app with which i would like to register some system events (time change events for ex)
code gist
gist.github /anonymous/0baf4bdfda75ca6302fb348cd390e9ee
{append with .com, broke the link as the post was waiting for moderator for very long time}
I am not receiving any notifications in my app.
Questions:
1) Is that the right way to run an empty runloop? (runloop exits immediately if i start with no source)
2) What state the thread should be to receive the notifications? (i used run loop not sure if thats expected way)
3) If I use a CFNotificationCenterGetDistributedCenter the app crashes,
I am new to the mac os programming, any input/suggestion are appreciated.
I took a quick look at your gist and couldn’t see what was wrong (honestly, it was a lot more code than I was expecting). Here’s a program that works on my machine:
@import Foundation; #include <notify.h> #include <notify_keys.h> int main(int argc, char **argv) { int token; uint32_t status; status = notify_register_dispatch(kNotifyTimeZoneChange, &token, dispatch_get_main_queue(), ^(int blockToken) { NSLog(@"notified"); }); assert(status == 0); dispatch_main(); return EXIT_SUCCESS; }
Also a newbie question on this how do I terminate the app while the
is running?dispatch_main
exit
.
Share and Enjoy
—
Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware
let myEmail = "eskimo" + "1" + "@apple.com"