-
Notifications
You must be signed in to change notification settings - Fork 23
/
CODistributedNotificationCenter.m
94 lines (82 loc) · 2.6 KB
/
CODistributedNotificationCenter.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*
Copyright (C) 2014 Quentin Mathe
Date: July 2014
License: MIT (see COPYING)
*/
#import "CODistributedNotificationCenter.h"
@implementation CODistributedNotificationCenter
static CODistributedNotificationCenter *defaultCenter = nil;
+ (void)initialize
{
if ([self class] != self)
return;
defaultCenter = [[self alloc] init];
}
+ (CODistributedNotificationCenter *)defaultCenter
{
return defaultCenter;
}
- (void)addObserver: (id)observer
selector: (SEL)aSelector
name: (nullable NSNotificationName)aName
object: (nullable NSString *)anObject
{
#if !(SANDBOXED) && !(TARGET_OS_IPHONE)
[[NSDistributedNotificationCenter defaultCenter]
addObserver: observer
selector: aSelector
name: aName
object: anObject];
#else
[[NSNotificationCenter defaultCenter]
addObserver: observer
selector: aSelector
name: aName
object: anObject];
#endif
}
- (id <NSObject>)addObserverForName: (NSNotificationName)aName
object: (id)anObject
queue: (NSOperationQueue *)aQueue
usingBlock: (void (^)(NSNotification *notification))block
{
#if !(SANDBOXED) && !(TARGET_OS_IPHONE)
return [[NSDistributedNotificationCenter defaultCenter]
addObserverForName: aName
object: anObject
queue: aQueue
usingBlock: block];
#else
return [[NSNotificationCenter defaultCenter]
addObserverForName: aName
object: anObject
queue: aQueue
usingBlock: block];
#endif
}
- (void)removeObserver: (id)observer {
#if !(SANDBOXED) && !(TARGET_OS_IPHONE)
[[NSDistributedNotificationCenter defaultCenter] removeObserver: observer];
#else
[[NSNotificationCenter defaultCenter] removeObserver: observer];
#endif
}
- (void)postNotificationName: (nullable NSNotificationName)aName
object: (nullable NSString *)aSender
userInfo: (nullable NSDictionary *)userInfo
deliverImmediately: (BOOL)deliverImmediately
{
#if !(SANDBOXED) && !(TARGET_OS_IPHONE)
[[NSDistributedNotificationCenter defaultCenter]
postNotificationName: aName
object: aSender
userInfo: userInfo
deliverImmediately: deliverImmediately];
#else
[[NSNotificationCenter defaultCenter]
postNotificationName: aName
object: aSender
userInfo: userInfo];
#endif
}
@end