-
-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathSettingsViewController.m
242 lines (198 loc) · 8.23 KB
/
SettingsViewController.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
//
// SettingsViewController.m
// TOPasscodeViewControllerExample
//
// Created by Tim Oliver on 6/4/17.
// Copyright © 2017 Timothy Oliver. All rights reserved.
//
#import "SettingsViewController.h"
#import "TOPasscodeSettingsViewController.h"
@interface SettingsViewController () <UIImagePickerControllerDelegate,
UINavigationControllerDelegate,
TOPasscodeSettingsViewControllerDelegate>
@property (nonatomic, strong) UIImageView *imageView;
@end
@implementation SettingsViewController
- (instancetype)init
{
if (self = [super initWithStyle:UITableViewStyleGrouped]) {
}
return self;
}
- (void)viewDidLoad {
[super viewDidLoad];
self.title = @"Settings";
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(doneButtonTapped)];
self.imageView = [[UIImageView alloc] initWithImage:self.wallpaperImage];
self.imageView.contentMode = UIViewContentModeScaleAspectFit;
self.imageView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (void)doneButtonTapped
{
if (self.doneButtonTappedHandler) {
self.doneButtonTappedHandler();
}
}
#pragma mark - Settings Controller Delegate -
- (BOOL)passcodeSettingsViewController:(TOPasscodeSettingsViewController *)passcodeSettingsViewController didAttemptCurrentPasscode:(NSString *)passcode
{
return [passcode isEqualToString:self.passcode];
}
- (void)passcodeSettingsViewController:(TOPasscodeSettingsViewController *)passcodeSettingsViewController didChangeToNewPasscode:(NSString *)passcode ofType:(TOPasscodeType)type
{
self.passcode = passcode;
self.passcodeType = type;
[self.tableView reloadSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:UITableViewRowAnimationNone];
[self.navigationController popViewControllerAnimated:YES];
}
#pragma mark - Table view data source
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
switch (section) {
case 0: return nil;
case 1: return @"Passcode Display Style";
case 2: return @"Choose Wallpaper";
case 3: return @"Passcode Keypad Button Style";
default: break;
}
return nil;
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 4;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
if (section == 1) {
return 4;
} else if (section == 3) {
return 1;
} else {
return 1;
}
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
if (indexPath.section != 2) { return 44.0f; }
return 280.0f;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *ident = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ident];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:ident];
}
if (indexPath.section == 0) {
cell.textLabel.text = @"Passcode";
cell.detailTextLabel.text = self.passcode;
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
}
else if (indexPath.section == 1) {
NSString *cellText = nil;
switch (indexPath.row) {
case 0: cellText = @"Dark Translucent"; break;
case 1: cellText = @"Light Translucent"; break;
case 2: cellText = @"Dark Opaque"; break;
case 3: cellText = @"Light Opaque"; break;
default:
break;
}
if (indexPath.row == self.style) {
cell.accessoryType = UITableViewCellAccessoryCheckmark;
}
else {
cell.accessoryType = UITableViewCellAccessoryNone;
}
cell.textLabel.text = cellText;
}
else if (indexPath.section == 3) {
NSString *cellText = nil;
switch (indexPath.row) {
case 0:
cellText = @"Show Lettering";
cell.accessoryType = self.showButtonLettering ? UITableViewCellAccessoryCheckmark : UITableViewCellAccessoryNone;
break;
default:
break;
}
cell.detailTextLabel.text = nil;
cell.textLabel.text = cellText;
}
else {
cell.textLabel.text = nil;
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
self.imageView.frame = CGRectInset(cell.bounds, 20, 20);
[cell addSubview:self.imageView];
}
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[tableView deselectRowAtIndexPath:indexPath animated:YES];
if (indexPath.section == 1) {
NSIndexPath *lastIndex = [NSIndexPath indexPathForRow:self.style inSection:1];
self.style = indexPath.row;
[tableView reloadRowsAtIndexPaths:@[lastIndex, indexPath] withRowAnimation:UITableViewRowAnimationNone];
}
else if (indexPath.section == 0) {
TOPasscodeSettingsViewController *settingsController = [[TOPasscodeSettingsViewController alloc] init];
settingsController.passcodeType = self.passcodeType;
settingsController.delegate = self;
settingsController.requireCurrentPasscode = YES;
[self.navigationController pushViewController:settingsController animated:YES];
}
else if (indexPath.section == 2) {
__weak typeof(self) weakSelf = self;
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
UIImage *pasteboardImage = pasteboard.image;
void (^photoAction)(UIAlertAction *) = ^(UIAlertAction *action) {
UIImagePickerController *pickerController = [[UIImagePickerController alloc] init];
pickerController.delegate = self;
pickerController.modalPresentationStyle = UIModalPresentationFormSheet;
[weakSelf presentViewController:pickerController animated:YES completion:nil];
};
if (!pasteboardImage) {
photoAction(nil);
return;
}
void (^clipboardAction)(UIAlertAction *) = ^(UIAlertAction *action) {
[weakSelf setNewWallpaper:pasteboardImage];
};
UIAlertController *controller = [UIAlertController alertControllerWithTitle:@"Choose Image Source"
message:nil
preferredStyle:UIAlertControllerStyleActionSheet];
[controller addAction:[UIAlertAction actionWithTitle:@"Paste Image" style:UIAlertActionStyleDefault handler:clipboardAction]];
[controller addAction:[UIAlertAction actionWithTitle:@"Choose from Library" style:UIAlertActionStyleDefault handler:photoAction]];
[self presentViewController:controller animated:YES completion:nil];
}
else if (indexPath.section == 3) {
NSIndexPath *lastIndex = [NSIndexPath indexPathForRow:self.style inSection:1];
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
switch (indexPath.row) {
case 0:
self.showButtonLettering = !self.showButtonLettering;
cell.accessoryType = self.showButtonLettering ? UITableViewCellAccessoryCheckmark : UITableViewCellAccessoryNone;
break;
default:
break;
}
[tableView reloadRowsAtIndexPaths:@[lastIndex, indexPath] withRowAnimation:UITableViewRowAnimationNone];
}
}
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary<NSString *,id> *)info
{
[self setNewWallpaper:info[UIImagePickerControllerOriginalImage]];
[self dismissViewControllerAnimated:YES completion:nil];
}
- (void)setNewWallpaper:(UIImage *)wallpaper
{
if (wallpaper == nil) { return; }
self.wallpaperImage = wallpaper;
self.imageView.image = wallpaper;
if (self.wallpaperChangedHandler) {
self.wallpaperChangedHandler(wallpaper);
}
}
@end