最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
iOS触摸事件的使用详解
时间:2022-06-25 23:44:26 编辑:袖梨 来源:一聚教程网
触摸事件在iOS中是最常用的事件,这里我们来介绍下触摸事件。
在下面的例子中定义UIImageView。首先我们在TouchEventViewController中添加触摸事件,并利用触摸移动事件来移动Image,具体代码如下:
@implementation TouchEvenViewController
- (void)viewDidLoad {
[super viewDidLoad];
UIImageView * _image=[[KCImage alloc]initWithFrame:CGRectMake(50, 50, 150, 169)];
[_image setImage:[UIImage imageName:@"zmit"]];
[self.view addSubview:_image];
}
#pragma mark - 视图控制器的触摸事件
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
NSLog(@"开始触摸");
}
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event{
//取得一个触摸对象(对于多点触摸可能有多个对象)
UITouch *touch=[touches anyObject];
//取得当前位置
CGPoint current=[touch locationInView:self.view];
//取得前一个位置
CGPoint previous=[touch previousLocationInView:self.view];
//移动前的中点位置
CGPoint center=_image.center;
//移动偏移量
CGPoint offset=CGPointMake(current.x-previous.x, current.y-previous.y);
//重新设置新位置
_image.center=CGPointMake(center.x+offset.x, center.y+offset.y);
NSLog(@触摸中");
}
-(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event{
NSLog(@"触摸结束");
}
@end
一个简单的拖动的触摸事件,在这里展示给大家了。
相关文章
- 王者荣耀侦探能力大测试攻略 王者荣耀侦探能力大测试怎么过 11-22
- 无期迷途主线前瞻兑换码是什么 11-22
- 原神欧洛伦怎么培养 11-22
- 炉石传说网易云音乐联动怎么玩 11-22
- 永劫无间手游确幸转盘怎么样 11-22
- 无期迷途主线前瞻兑换码是什么 无期迷途主线前瞻直播兑换码介绍 11-22