You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dws/ui/EventBridge.m

17 lines
242 B
Objective-C

#import "EventBridge.h"
@implementation EventBridge
+ (instancetype) shared {
static id instance;
static dispatch_once_t once;
dispatch_once(&once, ^{
instance = [EventBridge new];
});
return instance;
}
@end