下面小编就为大家分享一篇ios可拖动按钮实例。具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
最近产品抽风,想做许鲜网的那个小客服按钮,虽然没啥难度,但是我懒啊,哈哈,上度娘搞了一个,但是点击事件和拖动重复了,擦。干脆写一个吧,仅供参考。
话不多说,上代码:
- (UIButton *)panButton {
if (!_panButton) {
UIPanGestureRecognizer *panGesture = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(panAction:)];
_panButton = [[UIButton alloc] init];
_panButton.backgroundColor = [UIColor blueColor];
_panButton.layer.borderWidth = 1.f;
_panButton.layer.borderColor = [UIColor greenColor].CGColor;
[_panButton setTitle:@"清除缓存" forState:UIControlStateNormal];
_panButton.titleLabel.font = [UIFont systemFontOfSize:9];
[_panButton addTarget:self action:@selector(buttonAction:) forControlEvents:UIControlEventTouchUpInside];
[_panButton addGestureRecognizer:panGesture];
}
return _panButton;
}
- (void)panAction:(UIPanGestureRecognizer *)recognizer {
CGPoint translationPoint = [recognizer translationInView:self.view];
CGPoint center = recognizer.view.center;
recognizer.view.center = CGPointMake(center.x + translationPoint.x, center.y + translationPoint.y);
[recognizer setTranslation:CGPointZero inView:self.view];
}
-(void)buttonAction:(UIButton *)sender
{
NSLog(@"烦人,点我干啥~");
}
以上这篇ios可拖动按钮实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程学习网。
织梦狗教程
本文标题为:ios可拖动按钮实例
基础教程推荐
猜你喜欢
- android studio按钮监听的5种方法实例详解 2023-01-12
- Android中的webview监听每次URL变化实例 2023-01-23
- 解决Android Studio突然不显示logcat日志的问题 2023-02-04
- Android多返回栈技术 2023-04-15
- IOS 播放系统提示音使用总结(AudioToolbox) 2023-03-01
- IOS应用内跳转系统设置相关界面的方法 2022-11-20
- Flutter手势密码的实现示例(附demo) 2023-04-11
- Flutter绘图组件之CustomPaint使用详解 2023-05-12
- iOS开发教程之XLForm的基本使用方法 2023-05-01
- Android开发使用RecyclerView添加点击事件实例详解 2023-06-15
