48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
-
+
-
+
|
/**
* \brief Broadcasts a selector with an object to all registered delegates.
*
* \param selector The selector to broadcast
* \param object The object to broadcast
*/
- (BOOL)broadcastSelector: (SEL)selector
- (bool)broadcastSelector: (SEL)selector
withObject: (id)object;
/**
* \brief Broadcasts a selector with two objects to all registered delegates.
*
* \param selector The selector to broadcast
* \param object1 The first object to broadcast
* \param object2 The second object to broadcast
*/
- (BOOL)broadcastSelector: (SEL)selector
- (bool)broadcastSelector: (SEL)selector
withObject: (id)object1
withObject: (id)object2;
@end
|