iOS拖放按钮效果实现(UIDragButton)

 1.实现原理

将所有按钮放在viewcontroller的_buttonArray集合中,同时赋值给按钮中

增加长按手势的响应

当手势坐标进入其他按钮的frame时,调整集合中按钮位置;

当长按手势开始,放大按钮; 结束时还原按钮

2.附源码及注释[按钮调控已实现动画]

@interface UIDragButton : UIButton {

CGPoint _prePoint;                  // 移动过程中的上一个点

BOOL    _isPress;                  // 是否按下:实现过程未用到

CGPoint _framePoint;                // 未放大情况下frame的左上角坐标

CGRect  _frameRect;                // 未放大情况下frame值

}

@property (nonatomic, assign) NSMutableArray *buttonArray;  // button集合

@property (nonatomic, assign) NSInteger      indexOfArray;  // 当前按钮在集合中的下标

// 移动动画,实现过程未用到,暂不能用

- (void)moveTo:(CGRect)rect Animation:(BOOL)flag;

// 初始化一些样式,即长按手势

- (void)initStyle;

@end

.m

@implementation UIDragButton

/*

* 样式初始化,即手势初始化

**/

- (void)initStyle {

self.backgroundColor = [UIColor whiteColor];

self.layer.borderWidth = 0.3;

self.layer.borderColor = [UIColor grayColor].CGColor;

UILongPressGestureRecognizer * longPressGr = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(longPressToDo:)];

longPressGr.minimumPressDuration = 1.0;

[self addGestureRecognizer:longPressGr];

}

#pragma mark - 按钮尺寸更改

// 放大

- (void)changeBig {

self.transform = CGAffineTransformScale(self.transform,1.25,1.25);

self.backgroundColor = [UIColor colorWithHexString:@"E0E0E0" alpha:1];

}

// 还原

- (void)changeBack {

self.transform = CGAffineTransformScale(self.transform,0.8,0.8);

// 按钮放大还原后会有偏移,所以要设置回正常位置,80和100是按钮尺寸

self.frame = CGRectMake(_framePoint.x, _framePoint.y, 80, 100);

}

#pragma mark - 手势管理

/*

* 手势响应,并判断状态

**/

- (void)longPressToDo:(UILongPressGestureRecognizer *)press {

if ([press state] == UIGestureRecognizerStateBegan) {

[self beganTouch:press];

[self changeBig]; // 放大

}

else if ([press state] == UIGestureRecognizerStateChanged) {

[self movedTouch:press];

}

else if ([press state] == UIGestureRecognizerStateEnded){

[self endedTouch:press];

}

}

/*

* 手势长按开始

**/

- (void)beganTouch:(UILongPressGestureRecognizer *)press {

_prePoint = [press locationInView:self];

_frameRect = self.frame;

_framePoint = self.frame.origin;

// 该通知用于告诉controller点击的是第几个按钮,用于将该按钮放在最上层

[[NSNotificationCenter defaultCenter] postNotificationName:@"buttonChanged" object:[NSNumber numberWithInteger:_indexOfArray]];

}

/*

* 手势长按结束

**/

- (void)endedTouch:(UILongPressGestureRecognizer *)press {

_prePoint = [press locationInView:self];

[self changeBack];

self.backgroundColor = [UIColor whiteColor];

}

/*

* 长按过程中移动

**/

- (void)movedTouch:(UILongPressGestureRecognizer *)press {

CGPoint now = [press locationInView:self];

NSInteger x = now.x - _prePoint.x;

NSInteger y = now.y - _prePoint.y;

self.frame = CGRectMake(self.frame.origin.x+x, self.frame.origin.y+y, self.frame.size.width, self.frame.size.height);

[self placeIsChanged:CGPointMake(self.frame.origin.x + _prePoint.x, self.frame.origin.y + _prePoint.y)];

}

#pragma mark - 按钮调整

/*

* 判断当前按钮位置是否变化,并进行调整

**/

- (void)placeIsChanged:(CGPoint)point {

for (NSInteger i = 0; i < [self.buttonArray count]; i++) {

if ([self pointIn:point rect:((UIButton *)[_buttonArray objectAtIndex:i]).frame]

&& _indexOfArray != i) {

[self adjustButtons:i];

}

}

}

/*

* 判断点是否在rect内

**/

- (BOOL)pointIn:(CGPoint)point rect:(CGRect)rect {

if (point.x > rect.origin.x && point.y > rect.origin.y && point.x < rect.origin.x+rect.size.width && point.y < rect.origin.y+rect.size.height) {

return YES;

}

return NO;

}

/*

* 调整按钮位置

**/

- (void)adjustButtons:(NSInteger)index {

CGRect rect = ((UIButton *)[_buttonArray objectAtIndex:index]).frame;

__block NSInteger i = 0;

__block NSInteger num = index;

// 将靠前的按钮移动到靠后的位置

if (_indexOfArray < index) {

// 将上一个按钮的位置赋值给当前按钮

[UIView animateWithDuration:0.5 animations:^{

for (i = num; i > _indexOfArray+1; i--) {

((UIDragButton *)[_buttonArray objectAtIndex:i]).frame = ((UIDragButton *)[_buttonArray objectAtIndex:i-1]).frame;

}

((UIDragButton *)[_buttonArray objectAtIndex:i]).frame = _frameRect;

}];

_frameRect = rect;

// 调整顺序  保证数组中按钮的frame按顺序排列

for (i = _indexOfArray; i < index; i++) {

[_buttonArray exchangeObjectAtIndex:i withObjectAtIndex:i+1];

((UIDragButton *)[_buttonArray objectAtIndex:i]).indexOfArray = i;

}

((UIDragButton *)[_buttonArray objectAtIndex:index]).indexOfArray = index;

}

else { // 将靠后的按钮移动到前边

// 将上一个按钮的位置赋值给当前按钮

[UIView animateWithDuration:0.5 animations:^{

for (i = num; i < _indexOfArray-1; i++) {

((UIDragButton *)[_buttonArray objectAtIndex:i]).frame = ((UIDragButton *)[_buttonArray objectAtIndex:i+1]).frame;

}

((UIDragButton *)[_buttonArray objectAtIndex:i]).frame = _frameRect;

}];

_frameRect = rect;

// 调整顺序  保证数组中按钮的frame按顺序排列

for (i = _indexOfArray; i > index; i--) {

[_buttonArray exchangeObjectAtIndex:i withObjectAtIndex:i-1];

((UIDragButton *)[_buttonArray objectAtIndex:i]).indexOfArray = i;

}

((UIDragButton *)[_buttonArray objectAtIndex:index]).indexOfArray = index;

}

_framePoint = _frameRect.origin;

}

#pragma mark - 按钮移动动画

- (void)moveTo:(CGRect)rect Animation:(BOOL)flag {

if (flag) {

// 计算偏移并移动

float x = rect.origin.x - self.frame.origin.x;

float y = rect.origin.y - self.frame.origin.y;

[self.layer addAnimation:[self moveX:0.1 X:[NSNumber numberWithFloat:x]] forKey:nil];

[self.layer addAnimation:[self moveY:0.1 Y:[NSNumber numberWithFloat:y]] forKey:nil];

}

else {

self.frame = rect;

}

}

- (CABasicAnimation *)moveX:(float)time X:(NSNumber *)x  // 横向移动

{

CABasicAnimation *animation=[CABasicAnimation animationWithKeyPath:@"transform.translation.x"];

animation.toValue=x;

animation.duration=time;                    // 动画持续时间

animation.removedOnCompletion=NO;

animation.fillMode=kCAFillModeForwards;

return animation;

}

- (CABasicAnimation *)moveY:(float)time Y:(NSNumber *)y  // 纵向移动

{

CABasicAnimation *animation=[CABasicAnimation animationWithKeyPath:@"transform.translation.y"];

animation.toValue=y;

animation.duration=time;

animation.removedOnCompletion=NO;

animation.fillMode=kCAFillModeForwards;

return animation;

}

@end

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,980评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,178评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,868评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,498评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,492评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,521评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,910评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,569评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,793评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,559评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,639评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,342评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,931评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,904评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,144评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,833评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,350评论 2 342

推荐阅读更多精彩内容