forked from escoz/QuickDialog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
QLabelElement.m
66 lines (51 loc) · 2.38 KB
/
QLabelElement.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
//
// Copyright 2011 ESCOZ Inc - http://escoz.com
//
// 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 "QLabelElement.h"
@implementation QLabelElement {
@private
UITableViewCellAccessoryType _accessoryType;
}
@synthesize image = _image;
@synthesize value = _value;
@synthesize accessoryType = _accessoryType;
@synthesize keepSelected = _keepSelected;
- (QLabelElement *)initWithTitle:(NSString *)title Value:(id)value {
self = [super init];
_title = title;
_value = value;
_keepSelected = YES;
return self;
}
-(void)setImageNamed:(NSString *)name {
self.image = [UIImage imageNamed:name];
}
- (NSString *)imageNamed {
return nil;
}
- (UITableViewCell *)getCellForTableView:(QuickDialogTableView *)tableView controller:(QuickDialogController *)controller {
QTableViewCell *cell = (QTableViewCell *) [super getCellForTableView:tableView controller:controller];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
cell.textLabel.text = _title;
cell.detailTextLabel.text = [_value description];
cell.imageView.image = _image;
cell.accessoryType = _accessoryType != UITableViewCellAccessoryNone ? _accessoryType : self.controllerAccessoryAction != nil ? UITableViewCellAccessoryDetailDisclosureButton : ( self.sections!= nil || self.controllerAction!=nil ? UITableViewCellAccessoryDisclosureIndicator : UITableViewCellAccessoryNone);
cell.selectionStyle = self.sections!= nil || self.controllerAction!=nil || self.onSelected!=nil ? UITableViewCellSelectionStyleBlue: UITableViewCellSelectionStyleNone;
return cell;
}
- (void)selected:(QuickDialogTableView *)tableView controller:(QuickDialogController *)controller indexPath:(NSIndexPath *)path {
[super selected:tableView controller:controller indexPath:path];
if (!self.keepSelected)
[tableView deselectRowAtIndexPath:path animated:YES];
}
@end