This repository was archived by the owner on Jul 2, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpragmaMarks.m
215 lines (164 loc) · 5.41 KB
/
pragmaMarks.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
/* The Good */
// > Methods are grouped into different sections, labeled with pragma marks
// > Methods are ordered
// > Delegate protocol methods are easy to keep track of
// > Separation of class internal private methods
#import "MPSeatingSelectionView.h"
#import "MPSeatButton.h"
#import "MPSeat.h"
@interface MPSeatingSelectionView () <MPSeatButtonDelegate>
@property (readwrite, nonatomic) NSInteger rows;
@property (readwrite, nonatomic) NSInteger columns;
@end
@implementation MPSeatingSelectionView
#pragma mark - Lifecycle
+ (instancetype)viewWithDelegate:(id<MPSeatSelectionViewDelegate>)delegate {
MPSeatingSelectionView *view = [[[NSBundle mainBundle] loadNibNamed:@"MPSeatingSelectionView" owner:nil options:nil] firstObject];
view.delegate = delegate;
return view;
}
#pragma mark - Accessors
- (void)setSeats:(NSArray *)seats {
_seats = seats;
[self redrawLayout];
}
#pragma mark - MPSeatButtonDelegate
- (void)seatButtonWillChangeSelectedStatus:(MPSeatButton *)button {
for (MPSeatButton *button in self.subviews) {
button.selected = NO;
}
}
- (void)seatButtonDidChangeSelectedStatus:(MPSeatButton *)button {
MPSeat *selectedSeat = button.selected ? button.seat : nil;
if (self.delegate) {
[self.delegate seatSelectionViewDidSelectSeat:selectedSeat];
}
}
#pragma mark - Private
- (void)redrawLayout {
[self removeLayout];
[self parseDimensions];
[self drawLayout];
}
- (void)removeLayout {
for (UIView *view in self.subviews) {
[view removeFromSuperview];
}
}
- (void)parseDimensions {
NSInteger highestRow = 0;
NSInteger highestColumn = 0;
for (MPSeat *seat in self.seats) {
highestRow = MAX(highestRow, seat.location.row);
highestColumn = MAX(highestColumn, seat.location.column);
}
self.rows = highestRow;
self.columns = highestColumn;
}
- (void)drawLayout {
for (MPSeat *seat in self.seats) {
MPSeatButton *button = [MPSeatButton buttonWithSeat:seat delegate:self];
CGRect frame = button.frame;
frame.origin = [self positionForSeat:seat];
button.frame = frame;
[self addSubview:button];
}
}
- (CGPoint)positionForSeat:(MPSeat *)seat {
CGFloat x = (seat.location.column - 1) * [self horizontalSpacing] + [self horizontalMargin];
CGFloat y = (seat.location.row - 1) * [self verticalSpacing] + [self verticalMargin];
return CGPointMake(x, y);
}
- (CGFloat)horizontalSpacing {
return self.frame.size.width / self.columns;
}
- (CGFloat)verticalSpacing {
return self.frame.size.height / self.rows;
}
- (CGFloat)horizontalMargin {
return ([self horizontalSpacing] - SeatButtonSize.width) / 2;
}
- (CGFloat)verticalMargin {
return ([self verticalSpacing] - SeatButtonSize.height) / 2;
}
@end
/* The Bad */
// > Methods have neither order nor labeling at all
// > The class feels like a bag full of unsorted stuff
// > You don't easily visualize delegation
// > Reading and finding things takes more time
#import "MPSeatingSelectionView.h"
#import "MPSeatButton.h"
#import "MPSeat.h"
@interface MPSeatingSelectionView () <MPSeatButtonDelegate>
@property (readwrite, nonatomic) NSInteger rows;
@property (readwrite, nonatomic) NSInteger columns;
@end
@implementation MPSeatingSelectionView
+ (instancetype)viewWithDelegate:(id<MPSeatSelectionViewDelegate>)delegate {
MPSeatingSelectionView *view = [[[NSBundle mainBundle] loadNibNamed:@"MPSeatingSelectionView" owner:nil options:nil] firstObject];
view.delegate = delegate;
return view;
}
- (void)redrawLayout {
[self removeLayout];
[self parseDimensions];
[self drawLayout];
}
- (void)seatButtonDidChangeSelectedStatus:(MPSeatButton *)button {
MPSeat *selectedSeat = button.selected ? button.seat : nil;
if (self.delegate) {
[self.delegate seatSelectionViewDidSelectSeat:selectedSeat];
}
}
- (void)setSeats:(NSArray *)seats {
_seats = seats;
[self redrawLayout];
}
- (void)removeLayout {
for (UIView *view in self.subviews) {
[view removeFromSuperview];
}
}
- (void)seatButtonWillChangeSelectedStatus:(MPSeatButton *)button {
for (MPSeatButton *button in self.subviews) {
button.selected = NO;
}
}
- (void)parseDimensions {
NSInteger highestRow = 0;
NSInteger highestColumn = 0;
for (MPSeat *seat in self.seats) {
highestRow = MAX(highestRow, seat.location.row);
highestColumn = MAX(highestColumn, seat.location.column);
}
self.rows = highestRow;
self.columns = highestColumn;
}
- (CGFloat)horizontalMargin {
return ([self horizontalSpacing] - SeatButtonSize.width) / 2;
}
- (CGFloat)verticalMargin {
return ([self verticalSpacing] - SeatButtonSize.height) / 2;
}
- (void)drawLayout {
for (MPSeat *seat in self.seats) {
MPSeatButton *button = [MPSeatButton buttonWithSeat:seat delegate:self];
CGRect frame = button.frame;
frame.origin = [self positionForSeat:seat];
button.frame = frame;
[self addSubview:button];
}
}
- (CGPoint)positionForSeat:(MPSeat *)seat {
CGFloat x = (seat.location.column - 1) * [self horizontalSpacing] + [self horizontalMargin];
CGFloat y = (seat.location.row - 1) * [self verticalSpacing] + [self verticalMargin];
return CGPointMake(x, y);
}
- (CGFloat)horizontalSpacing {
return self.frame.size.width / self.columns;
}
- (CGFloat)verticalSpacing {
return self.frame.size.height / self.rows;
}
@end