Skip to content

Commit 31922d1

Browse files
committedApr 10, 2018
Implemented grid overlay.
1 parent 9488bff commit 31922d1

39 files changed

+3278
-1352
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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 <UIKit/UIKit.h>
24+
25+
/**
26+
`UIColor` category adding helper methods for custom color initialization.
27+
*/
28+
@interface UIColor (DBDebugToolkit)
29+
30+
/**
31+
Creates and returns `UIColor` instance with provided RGB values.
32+
33+
@param rgbValue Integer with red, green and blue values encoded in format 0xRRGGBB.
34+
*/
35+
+ (instancetype)colorWithRGBValue:(NSInteger)rgbValue;
36+
37+
@end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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 "UIColor+DBDebugToolkit.h"
24+
25+
@implementation UIColor (DBDebugToolkit)
26+
27+
+ (instancetype)colorWithRGBValue:(NSInteger)rgbValue {
28+
return [UIColor colorWithRed:((CGFloat)((rgbValue & 0xFF0000) >> 16)) / 255.0
29+
green:((CGFloat)((rgbValue & 0x00FF00) >> 8)) / 255.0
30+
blue:((CGFloat)((rgbValue & 0x0000FF) >> 0)) / 255.0
31+
alpha:1.0];
32+
}
33+
34+
@end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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 <UIKit/UIKit.h>
24+
25+
@class DBColorCheckbox;
26+
27+
/**
28+
A protocol used for informing about the checkbox state.
29+
*/
30+
@protocol DBColorCheckboxDelegate
31+
32+
/**
33+
Informs the delegate that the checkbox value was changed.
34+
35+
@param colorCheckbox The checkbox that changed its value.
36+
@param newValue The new checkbox value.
37+
*/
38+
- (void)colorCheckbox:(DBColorCheckbox *)colorCheckbox didChangeValue:(BOOL)newValue;
39+
40+
@end
41+
42+
/**
43+
`DBColorCheckbox` is a simple `UIControl` subclass designed for selecting a specified color.
44+
*/
45+
@interface DBColorCheckbox : UIControl
46+
47+
/**
48+
Delegate that will be informed about the checkbox value. It needs to conform to `DBColorCheckboxDelegate` protocol.
49+
*/
50+
@property (nonatomic, weak) id <DBColorCheckboxDelegate> delegate;
51+
52+
/**
53+
Current value of the checkbox.
54+
*/
55+
@property (nonatomic, assign) BOOL isChecked;
56+
57+
/**
58+
Color selected by the checkbox.
59+
*/
60+
@property (nonatomic, strong) UIColor *color;
61+
62+
/**
63+
Color used for drawing the check mark.
64+
*/
65+
@property (nonatomic, strong) UIColor *checkMarkColor;
66+
67+
@end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
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 "DBColorCheckbox.h"
24+
25+
@implementation DBColorCheckbox
26+
27+
#pragma mark - Drawing
28+
29+
- (void)layoutSubviews {
30+
[super layoutSubviews];
31+
self.layer.cornerRadius = self.frame.size.width / 2.0;
32+
self.clipsToBounds = YES;
33+
}
34+
35+
- (void)drawRect:(CGRect)rect {
36+
[super drawRect:rect];
37+
if (self.isChecked) {
38+
[self.checkMarkColor setStroke];
39+
// Based on code generated by PaintCode, mentioned here: https://stackoverflow.com/a/19332828
40+
CGRect checkMarkRect = CGRectInset(self.bounds, 6.0, 6.0);
41+
UIBezierPath *bezierPath = [UIBezierPath bezierPath];
42+
[bezierPath moveToPoint:CGPointMake(CGRectGetMinX(checkMarkRect) + 0.27083 * CGRectGetWidth(checkMarkRect),
43+
CGRectGetMinY(checkMarkRect) + 0.54167 * CGRectGetHeight(checkMarkRect))];
44+
[bezierPath addLineToPoint:CGPointMake(CGRectGetMinX(checkMarkRect) + 0.41667 * CGRectGetWidth(checkMarkRect),
45+
CGRectGetMinY(checkMarkRect) + 0.68750 * CGRectGetHeight(checkMarkRect))];
46+
[bezierPath addLineToPoint: CGPointMake(CGRectGetMinX(checkMarkRect) + 0.75000 * CGRectGetWidth(checkMarkRect),
47+
CGRectGetMinY(checkMarkRect) + 0.35417 * CGRectGetHeight(checkMarkRect))];
48+
bezierPath.lineCapStyle = kCGLineCapSquare;
49+
bezierPath.lineWidth = 1.3;
50+
[bezierPath stroke];
51+
}
52+
}
53+
54+
#pragma mark - Handling touches
55+
56+
- (BOOL)beginTrackingWithTouch:(UITouch *)touch withEvent:(UIEvent *)event {
57+
self.isChecked = true;
58+
return YES;
59+
}
60+
61+
#pragma mark - Property setters
62+
63+
- (void)setColor:(UIColor *)color {
64+
_color = color;
65+
self.backgroundColor = color;
66+
[self setupBorderIfNeeded];
67+
}
68+
69+
- (void)setCheckMarkColor:(UIColor *)checkMarkColor {
70+
_checkMarkColor = checkMarkColor;
71+
[self setupBorderIfNeeded];
72+
}
73+
74+
- (void)setIsChecked:(BOOL)isChecked {
75+
if (isChecked != _isChecked) {
76+
_isChecked = isChecked;
77+
[self.delegate colorCheckbox:self didChangeValue:isChecked];
78+
[self setNeedsDisplay];
79+
}
80+
}
81+
82+
#pragma mark - Private methods
83+
84+
- (void)setupBorderIfNeeded {
85+
if (self.color == [UIColor whiteColor]) {
86+
self.layer.borderWidth = 1.0;
87+
self.layer.borderColor = self.checkMarkColor.CGColor;
88+
}
89+
}
90+
91+
@end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
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 <UIKit/UIKit.h>
24+
25+
@class DBColorPickerTableViewCell;
26+
27+
/**
28+
A protocol used for informing about the selected color.
29+
*/
30+
@protocol DBColorPickerTableViewCellDelegate
31+
32+
/**
33+
Informs the delegate about the selected color index.
34+
35+
@param colorPickerCell The cell with a color picker that changed the selected color.
36+
@param index The index of the selected color.
37+
*/
38+
- (void)colorPickerCell:(DBColorPickerTableViewCell *)colorPickerCell didSelectColorAtIndex:(NSInteger)index;
39+
40+
@end
41+
42+
/**
43+
`DBColorPickerTableViewCell` is a table view cell subclass with a title label, and multiple color checkboxes.
44+
*/
45+
@interface DBColorPickerTableViewCell : UITableViewCell
46+
47+
/**
48+
An outlet to `UILabel` instance displaying the title of the value changed with the color picker.
49+
*/
50+
@property (nonatomic, weak) IBOutlet UILabel *titleLabel;
51+
52+
/**
53+
Delegate that will be informed about the selected color index. It needs to conform to `DBColorPickerTableViewCellDelegate` protocol.
54+
*/
55+
@property (nonatomic, weak) id <DBColorPickerTableViewCellDelegate> delegate;
56+
57+
/**
58+
Configures the cell with specified colors and the index of the selected color.
59+
60+
@param primaryColors An array of colors that can be selected in the cell.
61+
@param secondaryColors An array of colors used for drawing the checkmarks on the the checkboxes.
62+
@param selectedIndex The index of the currently selected color.
63+
*/
64+
- (void)configureWithPrimaryColors:(NSArray <UIColor *> *)primaryColors
65+
secondaryColors:(NSArray <UIColor *> *)secondaryColors
66+
selectedIndex:(NSInteger)selectedIndex;
67+
68+
@end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
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

Comments
 (0)
Please sign in to comment.