forked from dogo/SCLAlertView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathViewController.m
More file actions
455 lines (340 loc) · 17.5 KB
/
ViewController.m
File metadata and controls
455 lines (340 loc) · 17.5 KB
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
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
//
// ViewController.m
// SCLAlertView
//
// Created by Diogo Autilio on 9/26/14.
// Copyright (c) 2014-2016 AnyKey Entertainment. All rights reserved.
//
#import "ViewController.h"
#import "SCLAlertView.h"
@interface ViewController ()
@end
NSString *kSuccessTitle = @"Congratulations";
NSString *kErrorTitle = @"Connection error";
NSString *kNoticeTitle = @"Notice";
NSString *kWarningTitle = @"Warning";
NSString *kInfoTitle = @"Info";
NSString *kSubtitle = @"You've just displayed this awesome Pop Up View";
NSString *kButtonTitle = @"Done";
NSString *kAttributeTitle = @"Attributed string operation successfully completed.";
@implementation ViewController
- (IBAction)showSuccess:(id)sender
{
SCLAlertView *alert = [[SCLAlertView alloc] initWithNewWindow];
SCLButton *button = [alert addButton:@"First Button" target:self selector:@selector(firstButton)];
button.buttonFormatBlock = ^NSDictionary* (void)
{
NSMutableDictionary *buttonConfig = [[NSMutableDictionary alloc] init];
buttonConfig[@"backgroundColor"] = [UIColor whiteColor];
buttonConfig[@"textColor"] = [UIColor blackColor];
buttonConfig[@"borderWidth"] = @2.0f;
buttonConfig[@"borderColor"] = [UIColor greenColor];
return buttonConfig;
};
[alert addButton:@"Second Button" actionBlock:^(void) {
NSLog(@"Second button tapped");
}];
alert.soundURL = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/right_answer.mp3", [NSBundle mainBundle].resourcePath]];
[alert showSuccess:kSuccessTitle subTitle:kSubtitle closeButtonTitle:kButtonTitle duration:0.0f];
}
- (IBAction)showSuccessWithHorizontalButtons:(id)sender {
SCLAlertView *alert = [[SCLAlertView alloc] initWithNewWindow];
[alert setHorizontalButtons:YES];
SCLButton *button = [alert addButton:@"First Button" target:self selector:@selector(firstButton)];
button.buttonFormatBlock = ^NSDictionary* (void)
{
NSMutableDictionary *buttonConfig = [[NSMutableDictionary alloc] init];
buttonConfig[@"backgroundColor"] = [UIColor whiteColor];
buttonConfig[@"textColor"] = [UIColor blackColor];
buttonConfig[@"borderWidth"] = @2.0f;
buttonConfig[@"borderColor"] = [UIColor greenColor];
return buttonConfig;
};
[alert addButton:@"Second Button" actionBlock:^(void) {
NSLog(@"Second button tapped");
}];
alert.soundURL = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/right_answer.mp3", [NSBundle mainBundle].resourcePath]];
[alert showSuccess:kSuccessTitle subTitle:kSubtitle closeButtonTitle:kButtonTitle duration:0.0f];
}
- (IBAction)showError:(id)sender
{
SCLAlertView *alert = [[SCLAlertView alloc] init];
[alert showError:self title:@"Hold On..."
subTitle:@"You have not saved your Submission yet. Please save the Submission before accessing the Responses list. Blah de blah de blah, blah. Blah de blah de blah, blah.Blah de blah de blah, blah.Blah de blah de blah, blah.Blah de blah de blah, blah.Blah de blah de blah, blah."
closeButtonTitle:@"OK" duration:0.0f];
}
- (IBAction)showNotice:(id)sender
{
SCLAlertView *alert = [[SCLAlertView alloc] init];
alert.backgroundType = SCLAlertViewBackgroundBlur;
[alert showNotice:self title:kNoticeTitle subTitle:@"You've just displayed this awesome Pop Up View with blur effect" closeButtonTitle:kButtonTitle duration:0.0f];
}
- (IBAction)showWarning:(id)sender
{
SCLAlertView *alert = [[SCLAlertView alloc] init];
[alert showWarning:self title:kWarningTitle subTitle:kSubtitle closeButtonTitle:kButtonTitle duration:0.0f];
}
- (IBAction)showInfo:(id)sender
{
SCLAlertView *alert = [[SCLAlertView alloc] init];
alert.shouldDismissOnTapOutside = YES;
[alert alertIsDismissed:^{
NSLog(@"SCLAlertView dismissed!");
}];
[alert showInfo:self title:kInfoTitle subTitle:kSubtitle closeButtonTitle:kButtonTitle duration:0.0f];
}
- (IBAction)showEdit:(id)sender
{
SCLAlertView *alert = [[SCLAlertView alloc] init];
SCLTextView *textField = [alert addTextField:@"Enter your name"];
[alert addButton:@"Show Name" actionBlock:^(void) {
NSLog(@"Text value: %@", textField.text);
}];
[alert showEdit:self title:kInfoTitle subTitle:kSubtitle closeButtonTitle:kButtonTitle duration:0.0f];
}
- (IBAction)showEditWithHorizontalButtons:(id)sender
{
SCLAlertView *alert = [[SCLAlertView alloc] init];
[alert setHorizontalButtons:YES];
SCLTextView *textField = [alert addTextField:@"Enter your name"];
alert.hideAnimationType = SCLAlertViewHideAnimationSimplyDisappear;
[alert addButton:@"Show Name" actionBlock:^(void) {
NSLog(@"Text value: %@", textField.text);
}];
[alert showEdit:self title:kInfoTitle subTitle:kSubtitle closeButtonTitle:kButtonTitle duration:0.0f];
}
- (IBAction)showAdvanced:(id)sender
{
SCLAlertView *alert = [[SCLAlertView alloc] init];
alert.backgroundViewColor = [UIColor cyanColor];
[alert setTitleFontFamily:@"Superclarendon" withSize:20.0f];
[alert setBodyTextFontFamily:@"TrebuchetMS" withSize:14.0f];
[alert setButtonsTextFontFamily:@"Baskerville" withSize:14.0f];
[alert addButton:@"First Button" target:self selector:@selector(firstButton)];
[alert addButton:@"Second Button" actionBlock:^(void) {
NSLog(@"Second button tapped");
}];
SCLTextView *textField = [alert addTextField:@"Enter your name"];
[alert addButton:@"Show Name" actionBlock:^(void) {
NSLog(@"Text value: %@", textField.text);
}];
alert.completeButtonFormatBlock = ^NSDictionary* (void)
{
NSMutableDictionary *buttonConfig = [[NSMutableDictionary alloc] init];
buttonConfig[@"backgroundColor"] = [UIColor greenColor];
buttonConfig[@"borderColor"] = [UIColor blackColor];
buttonConfig[@"borderWidth"] = @"1.0f";
buttonConfig[@"textColor"] = [UIColor blackColor];
return buttonConfig;
};
alert.attributedFormatBlock = ^NSAttributedString* (NSString *value)
{
NSMutableAttributedString *subTitle = [[NSMutableAttributedString alloc]initWithString:value];
NSRange redRange = [value rangeOfString:@"Attributed" options:NSCaseInsensitiveSearch];
[subTitle addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:redRange];
NSRange greenRange = [value rangeOfString:@"successfully" options:NSCaseInsensitiveSearch];
[subTitle addAttribute:NSForegroundColorAttributeName value:[UIColor brownColor] range:greenRange];
NSRange underline = [value rangeOfString:@"completed" options:NSCaseInsensitiveSearch];
[subTitle addAttributes:@{NSUnderlineStyleAttributeName:@(NSUnderlineStyleSingle)} range:underline];
return subTitle;
};
[alert showTitle:self title:@"Congratulations" subTitle:kAttributeTitle style:SCLAlertViewStyleSuccess closeButtonTitle:@"Done" duration:0.0f];
}
- (IBAction)ShowAdvancedWithHorizontalButtons:(id)sender
{
SCLAlertView *alert = [[SCLAlertView alloc] init];
[alert setHorizontalButtons:YES];
alert.backgroundViewColor = [UIColor cyanColor];
[alert setTitleFontFamily:@"Superclarendon" withSize:20.0f];
[alert setBodyTextFontFamily:@"TrebuchetMS" withSize:14.0f];
[alert setButtonsTextFontFamily:@"Baskerville" withSize:14.0f];
[alert addButton:@"First Button" target:self selector:@selector(firstButton)];
[alert addButton:@"Second Button" actionBlock:^(void) {
NSLog(@"Second button tapped");
}];
SCLTextView *textField = [alert addTextField:@"Enter your name"];
[alert addButton:@"Show Name" actionBlock:^(void) {
NSLog(@"Text value: %@", textField.text);
}];
alert.completeButtonFormatBlock = ^NSDictionary* (void)
{
NSMutableDictionary *buttonConfig = [[NSMutableDictionary alloc] init];
buttonConfig[@"backgroundColor"] = [UIColor greenColor];
buttonConfig[@"borderColor"] = [UIColor blackColor];
buttonConfig[@"borderWidth"] = @"1.0f";
buttonConfig[@"textColor"] = [UIColor blackColor];
return buttonConfig;
};
alert.attributedFormatBlock = ^NSAttributedString* (NSString *value)
{
NSMutableAttributedString *subTitle = [[NSMutableAttributedString alloc]initWithString:value];
NSRange redRange = [value rangeOfString:@"Attributed" options:NSCaseInsensitiveSearch];
[subTitle addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:redRange];
NSRange greenRange = [value rangeOfString:@"successfully" options:NSCaseInsensitiveSearch];
[subTitle addAttribute:NSForegroundColorAttributeName value:[UIColor brownColor] range:greenRange];
NSRange underline = [value rangeOfString:@"completed" options:NSCaseInsensitiveSearch];
[subTitle addAttributes:@{NSUnderlineStyleAttributeName:@(NSUnderlineStyleSingle)} range:underline];
return subTitle;
};
[alert showTitle:self title:@"Congratulations" subTitle:kAttributeTitle style:SCLAlertViewStyleSuccess closeButtonTitle:@"Done" duration:0.0f];
}
- (IBAction)showWithDuration:(id)sender
{
SCLAlertView *alert = [[SCLAlertView alloc] init];
[alert showNotice:self title:kNoticeTitle subTitle:@"You've just displayed this awesome Pop Up View with 5 seconds duration" closeButtonTitle:nil duration:5.0f];
}
- (IBAction)showCustom:(id)sender
{
SCLAlertView *alert = [[SCLAlertView alloc] init];
UIColor *color = [UIColor colorWithRed:65.0/255.0 green:64.0/255.0 blue:144.0/255.0 alpha:1.0];
[alert showCustom:self image:[UIImage imageNamed:@"git"] color:color title:@"Custom" subTitle:@"Add a custom icon and color for your own type of alert!" closeButtonTitle:@"OK" duration:0.0f];
}
- (IBAction)showValidation:(id)sender
{
SCLAlertView *alert = [[SCLAlertView alloc] init];
SCLTextView *evenField = [alert addTextField:@"Enter an even number"];
evenField.keyboardType = UIKeyboardTypeNumberPad;
SCLTextView *oddField = [alert addTextField:@"Enter an odd number"];
oddField.keyboardType = UIKeyboardTypeNumberPad;
[alert addButton:@"Test Validation" validationBlock:^BOOL{
if (evenField.text.length == 0)
{
[[[UIAlertView alloc] initWithTitle:@"Whoops!" message:@"You forgot to add an even number." delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil] show];
[evenField becomeFirstResponder];
return NO;
}
if (oddField.text.length == 0)
{
[[[UIAlertView alloc] initWithTitle:@"Whoops!" message:@"You forgot to add an odd number." delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil] show];
[oddField becomeFirstResponder];
return NO;
}
NSInteger evenFieldEntry = (evenField.text).integerValue;
BOOL evenFieldPassedValidation = evenFieldEntry % 2 == 0;
if (!evenFieldPassedValidation)
{
[[[UIAlertView alloc] initWithTitle:@"Whoops!" message:@"That is not an even number." delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil] show];
[evenField becomeFirstResponder];
return NO;
}
NSInteger oddFieldEntry = (oddField.text).integerValue;
BOOL oddFieldPassedValidation = oddFieldEntry % 2 == 1;
if (!oddFieldPassedValidation)
{
[[[UIAlertView alloc] initWithTitle:@"Whoops!" message:@"That is not an odd number." delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil] show];
[oddField becomeFirstResponder];
return NO;
}
return YES;
} actionBlock:^{
[[[UIAlertView alloc] initWithTitle:@"Great Job!" message:@"Thanks for playing." delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil] show];
}];
[alert showEdit:self title:@"Validation" subTitle:@"Ensure the data is correct before dismissing!" closeButtonTitle:@"Cancel" duration:0];
}
- (IBAction)showValidationWithHorizontalButtons:(id)sender
{
SCLAlertView *alert = [[SCLAlertView alloc] init];
[alert setHorizontalButtons:YES];
SCLTextView *evenField = [alert addTextField:@"Enter an even number"];
evenField.keyboardType = UIKeyboardTypeNumberPad;
SCLTextView *oddField = [alert addTextField:@"Enter an odd number"];
oddField.keyboardType = UIKeyboardTypeNumberPad;
[alert addButton:@"Test Validation" validationBlock:^BOOL{
if (evenField.text.length == 0)
{
[[[UIAlertView alloc] initWithTitle:@"Whoops!" message:@"You forgot to add an even number." delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil] show];
[evenField becomeFirstResponder];
return NO;
}
if (oddField.text.length == 0)
{
[[[UIAlertView alloc] initWithTitle:@"Whoops!" message:@"You forgot to add an odd number." delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil] show];
[oddField becomeFirstResponder];
return NO;
}
NSInteger evenFieldEntry = (evenField.text).integerValue;
BOOL evenFieldPassedValidation = evenFieldEntry % 2 == 0;
if (!evenFieldPassedValidation)
{
[[[UIAlertView alloc] initWithTitle:@"Whoops!" message:@"That is not an even number." delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil] show];
[evenField becomeFirstResponder];
return NO;
}
NSInteger oddFieldEntry = (oddField.text).integerValue;
BOOL oddFieldPassedValidation = oddFieldEntry % 2 == 1;
if (!oddFieldPassedValidation)
{
[[[UIAlertView alloc] initWithTitle:@"Whoops!" message:@"That is not an odd number." delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil] show];
[oddField becomeFirstResponder];
return NO;
}
return YES;
} actionBlock:^{
[[[UIAlertView alloc] initWithTitle:@"Great Job!" message:@"Thanks for playing." delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil] show];
}];
[alert showEdit:self title:@"Validation" subTitle:@"Ensure the data is correct before dismissing!" closeButtonTitle:@"Cancel" duration:0];
}
- (IBAction)showWaiting:(id)sender
{
SCLAlertView *alert = [[SCLAlertView alloc] init];
alert.showAnimationType = SCLAlertViewHideAnimationSlideOutToCenter;
alert.hideAnimationType = SCLAlertViewHideAnimationSlideOutFromCenter;
alert.backgroundType = SCLAlertViewBackgroundTransparent;
[alert showWaiting:self title:@"Waiting..."
subTitle:@"You've just displayed this awesome Pop Up View with transparent background"
closeButtonTitle:nil duration:5.0f];
}
- (IBAction)showTimer:(id)sender
{
SCLAlertView *alert = [[SCLAlertView alloc] init];
[alert addTimerToButtonIndex:0 reverse:YES];
[alert showInfo:self title:@"Countdown Timer"
subTitle:@"This alert has a duration set, and a countdown timer on the Dismiss button to show how long is left."
closeButtonTitle:@"Dismiss" duration:10.0f];
}
- (IBAction)showQuestion:(id)sender
{
SCLAlertView *alert = [[SCLAlertView alloc] init];
[alert showQuestion:self title:@"Question?" subTitle:kSubtitle closeButtonTitle:@"Dismiss" duration:0.0f];
}
- (IBAction)showSwitch:(id)sender {
SCLAlertView *alert = [[SCLAlertView alloc] initWithNewWindow];
alert.tintTopCircle = NO;
alert.iconTintColor = [UIColor brownColor];
alert.useLargerIcon = YES;
alert.cornerRadius = 13.0f;
[alert addSwitchViewWithLabel:@"Don't show again".uppercaseString];
[[SCLSwitchView appearance] setTintColor:[UIColor brownColor]];
SCLButton *button = [alert addButton:@"Done" target:self selector:@selector(firstButton)];
button.buttonFormatBlock = ^NSDictionary* (void) {
NSMutableDictionary *buttonConfig = [[NSMutableDictionary alloc] init];
buttonConfig[@"cornerRadius"] = @"17.5f";
return buttonConfig;
};
[alert showCustom:self image:[UIImage imageNamed:@"switch"] color:[UIColor brownColor] title:kInfoTitle subTitle:kSubtitle closeButtonTitle:nil duration:0.0f];
}
- (void)firstButton
{
NSLog(@"First button tapped");
}
- (IBAction)showWithButtonCustom:(id)sender
{
SCLAlertView *alert = [[SCLAlertView alloc] initWithNewWindow];
SCLButton *button = [alert addButton:@"First Button" target:self selector:@selector(firstButton)];
button.buttonFormatBlock = ^NSDictionary* (void)
{
NSMutableDictionary *buttonConfig = [[NSMutableDictionary alloc] init];
buttonConfig[@"backgroundColor"] = [UIColor whiteColor];
buttonConfig[@"textColor"] = [UIColor blackColor];
buttonConfig[@"borderWidth"] = @2.0f;
buttonConfig[@"borderColor"] = [UIColor greenColor];
buttonConfig[@"font"] = [UIFont fontWithName:@"ComicSansMS" size:13];
return buttonConfig;
};
[alert addButton:@"Second Button" actionBlock:^(void) {
NSLog(@"Second button tapped");
}];
alert.soundURL = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/right_answer.mp3", [NSBundle mainBundle].resourcePath]];
[alert showSuccess:kSuccessTitle subTitle:kSubtitle closeButtonTitle:kButtonTitle duration:0.0f];
}
@end