2015年2月12日木曜日

Extensionとアプリ本体間でイベント通知

Today ExtensionやWatch Extensionはアプリ本体とは別のアプリになる。
なので、NSUserDefaults に Observerを追加しても反応しないようだ。

[NSUserDefaults standardUserDefaults] でも
[[NSUserDefaults alloc] initWithSuiteName:APP_GROUP_NAME] でも反応してくれない。

通知を渡すためには、CFNotificationCenterGetDarwinNotifyCenter を使うとできるらしい。

- (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);
}
- (void)postNotification {
CFNotificationCenterRef notification = CFNotificationCenterGetDarwinNotifyCenter();
CFNotificationCenterPostNotification(notification, CFSTR("MyNotificationName"), NULL, NULL, YES);
}
view raw Post hosted with ❤ by GitHub

Watchではまだ試してないけど、Todayでは動いたので多分いけるのだろう。
• • •