-
Notifications
You must be signed in to change notification settings - Fork 41
/
UIActionSheet+Blocks.m
324 lines (259 loc) · 13.2 KB
/
UIActionSheet+Blocks.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
//
// UIActionSheet+Blocks.m
// UIActionSheetBlocks
//
// Created by Ryan Maxwell on 31/08/13.
//
// The MIT License (MIT)
//
// Copyright (c) 2013 Ryan Maxwell
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software and associated documentation files (the "Software"), to deal in
// the Software without restriction, including without limitation the rights to
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
// the Software, and to permit persons to whom the Software is furnished to do so,
// subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
#import "UIActionSheet+Blocks.h"
#import <objc/runtime.h>
static const void *UIActionSheetOriginalDelegateKey = &UIActionSheetOriginalDelegateKey;
static const void *UIActionSheetTapBlockKey = &UIActionSheetTapBlockKey;
static const void *UIActionSheetWillPresentBlockKey = &UIActionSheetWillPresentBlockKey;
static const void *UIActionSheetDidPresentBlockKey = &UIActionSheetDidPresentBlockKey;
static const void *UIActionSheetWillDismissBlockKey = &UIActionSheetWillDismissBlockKey;
static const void *UIActionSheetDidDismissBlockKey = &UIActionSheetDidDismissBlockKey;
static const void *UIActionSheetCancelBlockKey = &UIActionSheetCancelBlockKey;
#define NSArrayObjectMaybeNil(__ARRAY__, __INDEX__) ((__INDEX__ >= [__ARRAY__ count]) ? nil : [__ARRAY__ objectAtIndex:__INDEX__])
// This is a hack to turn an array into a variable argument list. There is no good way to expand arrays into variable argument lists in Objective-C. This works by nil-terminating the list as soon as we overstep the bounds of the array. The obvious glitch is that we only support a finite number of buttons.
#define NSArrayToVariableArgumentsList(__ARRAYNAME__) NSArrayObjectMaybeNil(__ARRAYNAME__, 0), NSArrayObjectMaybeNil(__ARRAYNAME__, 1), NSArrayObjectMaybeNil(__ARRAYNAME__, 2), NSArrayObjectMaybeNil(__ARRAYNAME__, 3), NSArrayObjectMaybeNil(__ARRAYNAME__, 4), NSArrayObjectMaybeNil(__ARRAYNAME__, 5), NSArrayObjectMaybeNil(__ARRAYNAME__, 6), NSArrayObjectMaybeNil(__ARRAYNAME__, 7), NSArrayObjectMaybeNil(__ARRAYNAME__, 8), NSArrayObjectMaybeNil(__ARRAYNAME__, 9), nil
@implementation UIActionSheet (Blocks)
+ (instancetype)showFromTabBar:(UITabBar *)tabBar
withTitle:(NSString *)title
cancelButtonTitle:(NSString *)cancelButtonTitle
destructiveButtonTitle:(NSString *)destructiveButtonTitle
otherButtonTitles:(NSArray *)otherButtonTitles
tapBlock:(UIActionSheetCompletionBlock)tapBlock {
UIActionSheet *actionSheet = [[self alloc] initWithTitle:title
delegate:nil
cancelButtonTitle:cancelButtonTitle
destructiveButtonTitle:destructiveButtonTitle
otherButtonTitles:NSArrayToVariableArgumentsList(otherButtonTitles)];
if (tapBlock) {
actionSheet.tapBlock = tapBlock;
}
[actionSheet showFromTabBar:tabBar];
#if !__has_feature(objc_arc)
return [actionSheet autorelease];
#else
return actionSheet;
#endif
}
+ (instancetype)showFromToolbar:(UIToolbar *)toolbar
withTitle:(NSString *)title
cancelButtonTitle:(NSString *)cancelButtonTitle
destructiveButtonTitle:(NSString *)destructiveButtonTitle
otherButtonTitles:(NSArray *)otherButtonTitles
tapBlock:(UIActionSheetCompletionBlock)tapBlock {
UIActionSheet *actionSheet = [[self alloc] initWithTitle:title
delegate:nil
cancelButtonTitle:cancelButtonTitle
destructiveButtonTitle:destructiveButtonTitle
otherButtonTitles:NSArrayToVariableArgumentsList(otherButtonTitles)];
if (tapBlock) {
actionSheet.tapBlock = tapBlock;
}
[actionSheet showFromToolbar:toolbar];
#if !__has_feature(objc_arc)
return [actionSheet autorelease];
#else
return actionSheet;
#endif
}
+ (instancetype)showInView:(UIView *)view
withTitle:(NSString *)title
cancelButtonTitle:(NSString *)cancelButtonTitle
destructiveButtonTitle:(NSString *)destructiveButtonTitle
otherButtonTitles:(NSArray *)otherButtonTitles
tapBlock:(UIActionSheetCompletionBlock)tapBlock {
UIActionSheet *actionSheet = [[self alloc] initWithTitle:title
delegate:nil
cancelButtonTitle:cancelButtonTitle
destructiveButtonTitle:destructiveButtonTitle
otherButtonTitles:NSArrayToVariableArgumentsList(otherButtonTitles)];
if (tapBlock) {
actionSheet.tapBlock = tapBlock;
}
[actionSheet showInView:view];
#if !__has_feature(objc_arc)
return [actionSheet autorelease];
#else
return actionSheet;
#endif
}
+ (instancetype)showFromBarButtonItem:(UIBarButtonItem *)barButtonItem
animated:(BOOL)animated
withTitle:(NSString *)title
cancelButtonTitle:(NSString *)cancelButtonTitle
destructiveButtonTitle:(NSString *)destructiveButtonTitle
otherButtonTitles:(NSArray *)otherButtonTitles
tapBlock:(UIActionSheetCompletionBlock)tapBlock {
UIActionSheet *actionSheet = [[self alloc] initWithTitle:title
delegate:nil
cancelButtonTitle:cancelButtonTitle
destructiveButtonTitle:destructiveButtonTitle
otherButtonTitles:NSArrayToVariableArgumentsList(otherButtonTitles)];
if (tapBlock) {
actionSheet.tapBlock = tapBlock;
}
[actionSheet showFromBarButtonItem:barButtonItem animated:animated];
#if !__has_feature(objc_arc)
return [actionSheet autorelease];
#else
return actionSheet;
#endif
}
+ (instancetype)showFromRect:(CGRect)rect
inView:(UIView *)view
animated:(BOOL)animated
withTitle:(NSString *)title
cancelButtonTitle:(NSString *)cancelButtonTitle
destructiveButtonTitle:(NSString *)destructiveButtonTitle
otherButtonTitles:(NSArray *)otherButtonTitles
tapBlock:(UIActionSheetCompletionBlock)tapBlock {
UIActionSheet *actionSheet = [[self alloc] initWithTitle:title
delegate:nil
cancelButtonTitle:cancelButtonTitle
destructiveButtonTitle:destructiveButtonTitle
otherButtonTitles:NSArrayToVariableArgumentsList(otherButtonTitles)];
if (tapBlock) {
actionSheet.tapBlock = tapBlock;
}
[actionSheet showFromRect:rect inView:view animated:animated];
#if !__has_feature(objc_arc)
return [actionSheet autorelease];
#else
return actionSheet;
#endif
}
#pragma mark -
- (void)_checkActionSheetDelegate {
if (self.delegate != (id<UIActionSheetDelegate>)self) {
objc_setAssociatedObject(self, UIActionSheetOriginalDelegateKey, self.delegate, OBJC_ASSOCIATION_ASSIGN);
self.delegate = (id<UIActionSheetDelegate>)self;
}
}
- (UIActionSheetCompletionBlock)tapBlock {
return objc_getAssociatedObject(self, UIActionSheetTapBlockKey);
}
- (void)setTapBlock:(UIActionSheetCompletionBlock)tapBlock {
[self _checkActionSheetDelegate];
objc_setAssociatedObject(self, UIActionSheetTapBlockKey, tapBlock, OBJC_ASSOCIATION_COPY);
}
- (UIActionSheetCompletionBlock)willDismissBlock {
return objc_getAssociatedObject(self, UIActionSheetWillDismissBlockKey);
}
- (void)setWillDismissBlock:(UIActionSheetCompletionBlock)willDismissBlock {
[self _checkActionSheetDelegate];
objc_setAssociatedObject(self, UIActionSheetWillDismissBlockKey, willDismissBlock, OBJC_ASSOCIATION_COPY);
}
- (UIActionSheetCompletionBlock)didDismissBlock {
return objc_getAssociatedObject(self, UIActionSheetDidDismissBlockKey);
}
- (void)setDidDismissBlock:(UIActionSheetCompletionBlock)didDismissBlock {
[self _checkActionSheetDelegate];
objc_setAssociatedObject(self, UIActionSheetDidDismissBlockKey, didDismissBlock, OBJC_ASSOCIATION_COPY);
}
- (UIActionSheetBlock)willPresentBlock {
return objc_getAssociatedObject(self, UIActionSheetWillPresentBlockKey);
}
- (void)setWillPresentBlock:(UIActionSheetBlock)willPresentBlock {
[self _checkActionSheetDelegate];
objc_setAssociatedObject(self, UIActionSheetWillPresentBlockKey, willPresentBlock, OBJC_ASSOCIATION_COPY);
}
- (UIActionSheetBlock)didPresentBlock {
return objc_getAssociatedObject(self, UIActionSheetDidPresentBlockKey);
}
- (void)setDidPresentBlock:(UIActionSheetBlock)didPresentBlock {
[self _checkActionSheetDelegate];
objc_setAssociatedObject(self, UIActionSheetDidPresentBlockKey, didPresentBlock, OBJC_ASSOCIATION_COPY);
}
- (UIActionSheetBlock)cancelBlock {
return objc_getAssociatedObject(self, UIActionSheetCancelBlockKey);
}
- (void)setCancelBlock:(UIActionSheetBlock)cancelBlock {
[self _checkActionSheetDelegate];
objc_setAssociatedObject(self, UIActionSheetCancelBlockKey, cancelBlock, OBJC_ASSOCIATION_COPY);
}
#pragma mark - UIActionSheetDelegate
- (void)willPresentActionSheet:(UIActionSheet *)actionSheet {
UIActionSheetBlock completion = actionSheet.willPresentBlock;
if (completion) {
completion(actionSheet);
}
id originalDelegate = objc_getAssociatedObject(self, UIActionSheetOriginalDelegateKey);
if (originalDelegate && [originalDelegate respondsToSelector:@selector(willPresentActionSheet:)]) {
[originalDelegate willPresentActionSheet:actionSheet];
}
}
- (void)didPresentActionSheet:(UIActionSheet *)actionSheet {
UIActionSheetBlock completion = actionSheet.didPresentBlock;
if (completion) {
completion(actionSheet);
}
id originalDelegate = objc_getAssociatedObject(self, UIActionSheetOriginalDelegateKey);
if (originalDelegate && [originalDelegate respondsToSelector:@selector(didPresentActionSheet:)]) {
[originalDelegate didPresentActionSheet:actionSheet];
}
}
- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex {
UIActionSheetCompletionBlock completion = actionSheet.tapBlock;
if (completion) {
completion(actionSheet, buttonIndex);
}
id originalDelegate = objc_getAssociatedObject(self, UIActionSheetOriginalDelegateKey);
if (originalDelegate && [originalDelegate respondsToSelector:@selector(actionSheet:clickedButtonAtIndex:)]) {
[originalDelegate actionSheet:actionSheet clickedButtonAtIndex:buttonIndex];
}
}
- (void)actionSheetCancel:(UIActionSheet *)actionSheet {
UIActionSheetBlock completion = actionSheet.cancelBlock;
if (completion) {
completion(actionSheet);
}
id originalDelegate = objc_getAssociatedObject(self, UIActionSheetOriginalDelegateKey);
if (originalDelegate && [originalDelegate respondsToSelector:@selector(actionSheetCancel:)]) {
[originalDelegate actionSheetCancel:actionSheet];
}
}
- (void)actionSheet:(UIActionSheet *)actionSheet willDismissWithButtonIndex:(NSInteger)buttonIndex {
UIActionSheetCompletionBlock completion = actionSheet.willDismissBlock;
if (completion) {
completion(actionSheet, buttonIndex);
}
id originalDelegate = objc_getAssociatedObject(self, UIActionSheetOriginalDelegateKey);
if (originalDelegate && [originalDelegate respondsToSelector:@selector(actionSheet:willDismissWithButtonIndex:)]) {
[originalDelegate actionSheet:actionSheet willDismissWithButtonIndex:buttonIndex];
}
}
- (void)actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger)buttonIndex {
UIActionSheetCompletionBlock completion = actionSheet.didDismissBlock;
if (completion) {
completion(actionSheet, buttonIndex);
}
id originalDelegate = objc_getAssociatedObject(self, UIActionSheetOriginalDelegateKey);
if (originalDelegate && [originalDelegate respondsToSelector:@selector(actionSheet:didDismissWithButtonIndex:)]) {
[originalDelegate actionSheet:actionSheet didDismissWithButtonIndex:buttonIndex];
}
}
@end