forked from escoz/QuickDialog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
QImageElement.m
162 lines (131 loc) · 5.68 KB
/
QImageElement.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
//
// Copyright 2012 Ludovic Landry - http://about.me/ludoviclandry
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
// file except in compliance with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software distributed under
// the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
// ANY KIND, either express or implied. See the License for the specific language governing
// permissions and limitations under the License.
//
#import "QImageTableViewCell.h"
@interface QImageElement () <UINavigationControllerDelegate, UIImagePickerControllerDelegate, UIPopoverControllerDelegate>
@property(nonatomic, retain) UIImagePickerController *imagePickerController;
@property(nonatomic, strong) UIPopoverController *popoverController;
@end
@implementation QImageElement {
enum UIImagePickerControllerSourceType _source;
}
@synthesize imageValue;
@synthesize imageMaxLength;
@synthesize imagePickerController;
@synthesize popoverController;
@synthesize source = _source;
- (QEntryElement *)init {
self = [super init];
if (self) {
_source = UIImagePickerControllerSourceTypePhotoLibrary;
self.imageMaxLength = FLT_MAX;
}
return self;
}
- (QImageElement *)initWithTitle:(NSString *)aTitle detailImage:(UIImage *)anImage {
self = [super init];
if (self) {
self.title = aTitle;
self.imageValue = anImage;
self.imageMaxLength = FLT_MAX;
_source = UIImagePickerControllerSourceTypePhotoLibrary;
}
return self;
}
- (void)setImageValueNamed:(NSString *)name {
self.imageValue = [UIImage imageNamed:name];
[self reducedImageIfNeeded];
}
- (UITableViewCell *)getCellForTableView:(QuickDialogTableView *)tableView controller:(QuickDialogController *)controller {
QImageTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"QuickformImageElement"];
if (cell == nil) {
cell = [[QImageTableViewCell alloc] init];
}
[cell prepareForElement:self inTableView:tableView];
return cell;
}
- (void)selected:(QuickDialogTableView *)tableView controller:(QuickDialogController *)controller indexPath:(NSIndexPath *)path {
[tableView deselectRowAtIndexPath:path animated:YES];
[self presentImagePicker:tableView controller:controller path:path];
}
- (void)fetchValueIntoObject:(id)obj
{
if (_key == nil) {
return;
}
[obj setValue:self.imageValue forKey:_key];
}
- (void)presentImagePicker:(QuickDialogTableView *)tableView controller:(QuickDialogController *)controller path:(NSIndexPath *)path {
if ([UIImagePickerController isSourceTypeAvailable:_source]) {
self.imagePickerController.sourceType = _source;
} else {
NSLog(@"Source not available, using default Library type.");
self.imagePickerController.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
}
BOOL isPhone = [UIDevice currentDevice].userInterfaceIdiom == UIUserInterfaceIdiomPhone;
if (isPhone) {
[controller displayViewController:self.imagePickerController];
} else {
UITableViewCell *tableViewCell = [tableView cellForRowAtIndexPath:path];
if ([tableViewCell isKindOfClass:[QImageTableViewCell class]]) {
UIView *presentingView = ((QImageTableViewCell *) tableViewCell).imageViewButton;
UIPopoverController *aPopoverController = [[UIPopoverController alloc] initWithContentViewController:self.imagePickerController];
[aPopoverController presentPopoverFromRect:presentingView.bounds
inView:presentingView
permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
aPopoverController.delegate = self;
self.popoverController = aPopoverController;
}
}
}
- (UIImagePickerController *)imagePickerController {
if (!imagePickerController) {
imagePickerController = [[UIImagePickerController alloc] init];
imagePickerController.delegate = self;
}
return imagePickerController;
}
- (void)dismissImagePickerController {
BOOL isPhone = [UIDevice currentDevice].userInterfaceIdiom == UIUserInterfaceIdiomPhone;
if (isPhone) {
[self.imagePickerController dismissViewControllerAnimated:YES completion:NULL];
} else {
[self.popoverController dismissPopoverAnimated:YES];
}
}
- (void)reducedImageIfNeeded {
if (self.imageValue.size.width > self.imageMaxLength || self.imageValue.size.height > self.imageMaxLength) {
float scale = self.imageMaxLength / MAX(self.imageValue.size.width, self.imageValue.size.height);
CGSize scaledSize = CGSizeMake(self.imageValue.size.width * scale, self.imageValue.size.height * scale);
UIGraphicsBeginImageContext(scaledSize);
[self.imageValue drawInRect:CGRectMake(0, 0, scaledSize.width, scaledSize.height)];
self.imageValue = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
}
}
#pragma mark -
#pragma mark UIImagePickerControllerDelegate
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info {
self.imageValue = [info valueForKey:UIImagePickerControllerOriginalImage];
[self reducedImageIfNeeded];
[self dismissImagePickerController];
}
- (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker {
[self dismissImagePickerController];
}
#pragma mark -
#pragma mark UIPopoverControllerDelegate
- (void)popoverControllerDidDismissPopover:(UIPopoverController *)popoverController {
self.popoverController = nil;
}
@end