-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFBMovableButton.m
101 lines (68 loc) · 2.48 KB
/
FBMovableButton.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
//
// FBMovableButton.m
// FlowBank
//
// Created by robin on 2017/6/8.
// Copyright © 2017年 irobin. All rights reserved.
//
#import "FBMovableButton.h"
@interface FBMovableButton()
//是否移动
@property (nonatomic,assign) BOOL isMoved;
@end
@implementation FBMovableButton
-(instancetype)init{
if (self=[super init]) {
self.backgroundColor=[UIColor whiteColor];
self.alpha=0.8;
}
return self;
}
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
[super touchesMoved:touches withEvent:event];
UITouch * touch = [touches anyObject];
//本次触摸点
CGPoint current = [touch locationInView:self];
//上次触摸点
CGPoint previous = [touch previousLocationInView:self];
CGPoint center = self.center;
//中心点移动触摸移动的距离
center.x += current.x - previous.x;
center.y += current.y - previous.y;
//限制移动范围
CGFloat screenWidth = [UIScreen mainScreen].bounds.size.width;
CGFloat screenHeight = [UIScreen mainScreen].bounds.size.height;
CGFloat xMin = self.frame.size.width * 0.5f;
CGFloat xMax = screenWidth - xMin;
CGFloat yMin = self.frame.size.height * 0.5f+64;
CGFloat yMax = screenHeight - self.frame.size.height * 0.5f - 49;
if (center.x > xMax) center.x = xMax;
if (center.x < xMin) center.x = xMin;
if (center.y > yMax) center.y = yMax;
if (center.y < yMin) center.y = yMin;
self.center = center;
//移动距离大于0.5才判断为移动了(提高容错性)
if (current.x-previous.x>=0.5 || current.y - previous.y>=0.5) {
self.isMoved = YES;
}
}
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
if (!self.isMoved) {
//如果没有移动,则调用父类方法,触发button的点击事件
[super touchesEnded:touches withEvent:event];
}
self.isMoved = NO;
// if (!self.dockable) return;
//回到一定范围
// CGFloat screenWidth = [UIScreen mainScreen].bounds.size.width;
// CGFloat x = self.frame.size.width * 0.5f;
//
// [UIView animateWithDuration:0.25f animations:^{
// CGPoint center = self.center;
// center.x = self.center.x > screenWidth * 0.5f ? screenWidth - x : x;
// self.center = center;
// }];
//关闭高亮状态
[self setHighlighted:NO];
}
@end