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
253 lines (188 loc) · 8.94 KB
/
ViewController.m
File metadata and controls
253 lines (188 loc) · 8.94 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
//
// ViewController.m
// SCLAlertView
//
// Created by Diogo Autilio on 9/26/14.
// Copyright (c) 2014 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
- (void)viewDidLoad
{
[super viewDidLoad];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
}
- (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)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 = Blur;
[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];
UITextField *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)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");
}];
UITextField *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:Success 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];
UITextField *evenField = [alert addTextField:@"Enter an even number"];
evenField.keyboardType = UIKeyboardTypeNumberPad;
UITextField *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 setShowAnimationType:SlideInToCenter];
[alert setHideAnimationType:SlideOutFromCenter];
alert.backgroundType = Transparent;
[alert showWaiting:self title:@"Waiting..."
subTitle:@"You've just displayed this awesome Pop Up View with transparent background"
closeButtonTitle:nil duration:5.0f];
}
- (void)firstButton
{
NSLog(@"First button tapped");
}
@end