Skip to content

Instantly share code, notes, and snippets.

@ElwinHsiao
ElwinHsiao / DarwinNotificationBridge.m
Last active December 13, 2018 09:17
a objective-c class that bridge CFNotification between NSNotification
// DarwinNotificationBridge.h
@interface DarwinNotificationBridge: NSObject
+ (instancetype)startBridgeForTarget:(id)target andSelector:(SEL)selector forName:(NSString *)name;
+ (void) postNotification:(NSString *)name withUserInfo:(NSDictionary *)userInfo;
- (instancetype)initWithTarget:(id)target andSelector:(SEL)selector forName:(NSString *)name;
- (void)start;
- (void)stop;
@end