|
| 1 | +// The MIT License |
| 2 | +// |
| 3 | +// Copyright (c) 2016 Dariusz Bukowski |
| 4 | +// |
| 5 | +// Permission is hereby granted, free of charge, to any person obtaining a copy |
| 6 | +// of this software and associated documentation files (the "Software"), to deal |
| 7 | +// in the Software without restriction, including without limitation the rights |
| 8 | +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 9 | +// copies of the Software, and to permit persons to whom the Software is |
| 10 | +// furnished to do so, subject to the following conditions: |
| 11 | +// |
| 12 | +// The above copyright notice and this permission notice shall be included in |
| 13 | +// all copies or substantial portions of the Software. |
| 14 | +// |
| 15 | +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 16 | +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 17 | +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 18 | +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 19 | +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 20 | +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 21 | +// THE SOFTWARE. |
| 22 | + |
| 23 | +#import "DBColorPickerTableViewCell.h" |
| 24 | +#import "DBColorCheckbox.h" |
| 25 | + |
| 26 | +@interface DBColorPickerTableViewCell () <DBColorCheckboxDelegate> |
| 27 | + |
| 28 | +@property (nonatomic, weak) IBOutlet DBColorCheckbox *colorCheckbox1; |
| 29 | +@property (nonatomic, weak) IBOutlet DBColorCheckbox *colorCheckbox2; |
| 30 | +@property (nonatomic, weak) IBOutlet DBColorCheckbox *colorCheckbox3; |
| 31 | +@property (nonatomic, weak) IBOutlet DBColorCheckbox *colorCheckbox4; |
| 32 | +@property (nonatomic, weak) IBOutlet DBColorCheckbox *colorCheckbox5; |
| 33 | +@property (nonatomic, weak) IBOutlet DBColorCheckbox *colorCheckbox6; |
| 34 | +@property (nonatomic, weak) IBOutlet DBColorCheckbox *colorCheckbox7; |
| 35 | +@property (nonatomic, weak) IBOutlet DBColorCheckbox *colorCheckbox8; |
| 36 | +@property (nonatomic, weak) IBOutlet DBColorCheckbox *colorCheckbox9; |
| 37 | +@property (nonatomic, weak) IBOutlet DBColorCheckbox *colorCheckbox10; |
| 38 | +@property (nonatomic, assign) NSInteger selectedIndex; |
| 39 | + |
| 40 | +@end |
| 41 | + |
| 42 | +@implementation DBColorPickerTableViewCell |
| 43 | + |
| 44 | +- (void)configureWithPrimaryColors:(NSArray<UIColor *> *)primaryColors |
| 45 | + secondaryColors:(NSArray<UIColor *> *)secondaryColors |
| 46 | + selectedIndex:(NSInteger)selectedIndex { |
| 47 | + NSArray <DBColorCheckbox *> *colorCheckboxes = [self colorCheckboxes]; |
| 48 | + [colorCheckboxes enumerateObjectsUsingBlock:^(DBColorCheckbox * _Nonnull checkbox, NSUInteger index, BOOL * _Nonnull stop) { |
| 49 | + checkbox.color = primaryColors[index]; |
| 50 | + checkbox.checkMarkColor = secondaryColors[index]; |
| 51 | + checkbox.delegate = self; |
| 52 | + }]; |
| 53 | + self.selectedIndex = selectedIndex; |
| 54 | +} |
| 55 | + |
| 56 | +#pragma mark - Private methods |
| 57 | + |
| 58 | +- (NSArray <DBColorCheckbox *> *)colorCheckboxes { |
| 59 | + return @[self.colorCheckbox1, |
| 60 | + self.colorCheckbox2, |
| 61 | + self.colorCheckbox3, |
| 62 | + self.colorCheckbox4, |
| 63 | + self.colorCheckbox5, |
| 64 | + self.colorCheckbox6, |
| 65 | + self.colorCheckbox7, |
| 66 | + self.colorCheckbox8, |
| 67 | + self.colorCheckbox9, |
| 68 | + self.colorCheckbox10]; |
| 69 | +} |
| 70 | + |
| 71 | +- (void)setSelectedIndex:(NSInteger)selectedIndex { |
| 72 | + _selectedIndex = selectedIndex; |
| 73 | + NSArray <DBColorCheckbox *> *colorCheckboxes = [self colorCheckboxes]; |
| 74 | + [colorCheckboxes enumerateObjectsUsingBlock:^(DBColorCheckbox * _Nonnull checkbox, NSUInteger index, BOOL * _Nonnull stop) { |
| 75 | + checkbox.isChecked = index == selectedIndex; |
| 76 | + }]; |
| 77 | + [self.delegate colorPickerCell:self didSelectColorAtIndex:selectedIndex]; |
| 78 | +} |
| 79 | + |
| 80 | +#pragma mark - DBColorCheckboxDelegate |
| 81 | + |
| 82 | +- (void)colorCheckbox:(DBColorCheckbox *)colorCheckbox didChangeValue:(BOOL)newValue { |
| 83 | + if (newValue == YES) { |
| 84 | + self.selectedIndex = [[self colorCheckboxes] indexOfObject:colorCheckbox]; |
| 85 | + } |
| 86 | +} |
| 87 | + |
| 88 | +@end |
0 commit comments