1
2
3
4
5
6
7
8
9
|
1
2
3
4
5
6
7
8
9
|
-
+
|
/*
* Copyright (c) 2012, Jonathan Schleifer <js@webkeks.org>
* Copyright (c) 2012, 2021, Jonathan Schleifer <js@nil.im>
*
* https://heap.zone/objxmpp/
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice is present in all copies.
*
|
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
-
+
-
|
/*!
* @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: (nullable id)object;
withObject: (nullable 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
|