-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDGSwitch.m
187 lines (167 loc) · 4.98 KB
/
DGSwitch.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
//
// DGSwitch.m
// FamilyConnect
//
// Created by Dov Goldberg on 3/28/11.
// Copyright 2011 Ogonium. All rights reserved.
// http://www.ogonium.com
#import "DGSwitch.h"
#import <QuartzCore/QuartzCore.h>
#define SLIDER_X_ON 0
// The width of one side (not including the width of the slider)
#define SLIDER_X_OFF -64.0f
#define SLIDER_TAG 430
// The width of the box (i.e. wide enough for one side + the slider)
#define SLIDER_WIDTH 103.0f
#define SLIDER_HEIGHT 27.0f
@implementation DGSwitch
@synthesize on = _on;
- (id)initWithFrame:(CGRect)frame
{
CGRect cframe = CGRectMake(frame.origin.x, frame.origin.y, SLIDER_WIDTH, SLIDER_HEIGHT);
self = [super initWithFrame:cframe];
if (self) {
// Initialization code
self.clipsToBounds = YES;
CGRect cframe = CGRectMake(self.frame.origin.x, self.frame.origin.y, SLIDER_WIDTH, SLIDER_HEIGHT);
self.layer.cornerRadius = 4;
self.frame = cframe;
[self setNeedsDisplay];
}
return self;
}
- (id)initWithCoder:(NSCoder *)aDecoder {
self=[super initWithCoder: aDecoder];
if(self) {
self.clipsToBounds = YES;
CGRect cframe = CGRectMake(self.frame.origin.x, self.frame.origin.y, SLIDER_WIDTH, SLIDER_HEIGHT);
self.layer.cornerRadius = 4;
self.frame = cframe;
[self setNeedsDisplay];
}
return self;
}
- (void)drawRect:(CGRect)rect {
[super drawRect:rect];
UIImageView *slider = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"slider.png"]];
CGRect sliderFrame = slider.frame;
if (_on) {
sliderFrame.origin.x = SLIDER_X_ON;
} else {
sliderFrame.origin.x = SLIDER_X_OFF;
}
sliderFrame.origin.y = 0;
slider.tag = SLIDER_TAG;
slider.frame = sliderFrame;
[self addSubview:slider];
[slider release];
}
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
tapPt = [[touches anyObject] locationInView: self];
xPos = tapPt.x + SLIDER_X_OFF;
moved = false;
UIImageView *slider = (UIImageView *)[self viewWithTag:SLIDER_TAG];
CGRect sliderFrame = slider.frame;
if (xPos > SLIDER_X_ON) {
xPos = SLIDER_X_ON;
}
if (xPos < SLIDER_X_OFF) {
xPos = SLIDER_X_OFF;
}
sliderFrame.origin.x = xPos;
}
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
CGPoint tappedPt = [[touches anyObject] locationInView: self];
xPos = tappedPt.x + SLIDER_X_OFF;
moved = true;
UIImageView *slider = (UIImageView *)[self viewWithTag:SLIDER_TAG];
CGRect sliderFrame = slider.frame;
if (xPos > SLIDER_X_ON) {
xPos = SLIDER_X_ON;
}
if (xPos < SLIDER_X_OFF) {
xPos = SLIDER_X_OFF;
}
sliderFrame.origin.x = xPos;
slider.frame = sliderFrame;
}
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
UIImageView *slider = (UIImageView *)[self viewWithTag:SLIDER_TAG];
CGRect sliderFrame = slider.frame;
BOOL value;
if (sliderFrame.origin.x < (SLIDER_X_OFF / 2)) {
sliderFrame.origin.x = SLIDER_X_OFF;
value = NO;
} else {
sliderFrame.origin.x = SLIDER_X_ON;
value = YES;
}
if (xPos < (SLIDER_X_OFF / 2)) {
sliderFrame.origin.x = SLIDER_X_OFF;
value = NO;
} else {
sliderFrame.origin.x = SLIDER_X_ON;
value = YES;
}
if (!moved) {
if (_on) {
sliderFrame.origin.x = SLIDER_X_OFF;
value = NO;
} else {
sliderFrame.origin.x = SLIDER_X_ON;
value = YES;
}
}
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.1];
slider.frame = sliderFrame;
[UIView commitAnimations];
if (value != _on) {
_on = value;
[self sendActionsForControlEvents:UIControlEventValueChanged];
}
}
- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event {
UIImageView *slider = (UIImageView *)[self viewWithTag:SLIDER_TAG];
CGRect sliderFrame = slider.frame;
BOOL value;
if (sliderFrame.origin.x < (SLIDER_X_OFF / 2)) {
sliderFrame.origin.x = SLIDER_X_OFF;
value = NO;
} else {
sliderFrame.origin.x = SLIDER_X_ON;
value = YES;
}
if (xPos < (SLIDER_X_OFF / 2)) {
sliderFrame.origin.x = SLIDER_X_OFF;
value = NO;
} else {
sliderFrame.origin.x = SLIDER_X_ON;
value = YES;
}
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.1];
slider.frame = sliderFrame;
[UIView commitAnimations];
if (value != _on) {
_on = value;
[self sendActionsForControlEvents:UIControlEventValueChanged];
}
}
- (void)setOn:(BOOL)on
{
UIImageView *slider = (UIImageView *)[self viewWithTag:SLIDER_TAG];
CGRect sliderFrame = slider.frame;
_on = on;
if (_on) {
sliderFrame.origin.x = SLIDER_X_ON;
} else {
sliderFrame.origin.x = SLIDER_X_OFF;
}
slider.frame = sliderFrame;
}
- (void)dealloc
{
[super dealloc];
}
@end