なので、NSUserDefaults に Observerを追加しても反応しないようだ。
[NSUserDefaults standardUserDefaults] でも
[[NSUserDefaults alloc] initWithSuiteName:APP_GROUP_NAME] でも反応してくれない。
通知を渡すためには、CFNotificationCenterGetDarwinNotifyCenter を使うとできるらしい。
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
- (void)addObserver { | |
CFNotificationCenterAddObserver(CFNotificationCenterGetDarwinNotifyCenter(), | |
NULL, | |
MyCallBack, | |
CFSTR("MyNotificationName"), | |
NULL, | |
CFNotificationSuspensionBehaviorDeliverImmediately); | |
} | |
static void MyCallBack(CFNotificationCenterRef center, void *observer, CFStringRef name,const void *object, CFDictionaryRef userInfo) { | |
NSLog(@"observer: %@", observer); | |
NSLog(@"name: %@", name); | |
NSLog(@"userinfo: %@", userInfo); | |
NSLog(@"object: %@", object); | |
} |
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
- (void)postNotification { | |
CFNotificationCenterRef notification = CFNotificationCenterGetDarwinNotifyCenter(); | |
CFNotificationCenterPostNotification(notification, CFSTR("MyNotificationName"), NULL, NULL, YES); | |
} |
Watchではまだ試してないけど、Todayでは動いたので多分いけるのだろう。