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.
|
#import "EventBridge.h"
|
|
|
|
@implementation EventBridge
|
|
|
|
+ (instancetype) shared {
|
|
static id instance;
|
|
static dispatch_once_t once;
|
|
|
|
dispatch_once(&once, ^{
|
|
instance = [EventBridge new];
|
|
});
|
|
|
|
return instance;
|
|
}
|
|
|
|
@end
|