Slide 12
Slide 12 text
Darwin Notify Center
CFNotificationCenterRef const center = CFNotificationCenterGetDarwinNotifyCenter();
CFStringRef str = (__bridge CFStringRef)@"com.kishikawakatsumi.notification.test";
CFNotificationCenterAddObserver(center,
(__bridge const void *)(self),
notificationCallback,
str,
NULL,
CFNotificationSuspensionBehaviorDeliverImmediately);
void notificationCallback(CFNotificationCenterRef center,
void * observer,
CFStringRef name,
void const * object,
CFDictionaryRef userInfo) {
...
}