首页 > 移动平台 > 详细

【iOS开发-触摸】移动的UIView例子

时间:2015-05-18 23:13:02      阅读:465      评论:0      收藏:0      [点我收藏+]

iOS触摸

方法:

//开始接触
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event;
- //在屏幕上移动
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event;
- //触摸结束
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event;
- //取消触摸
- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event;

实现UIView的移动

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {

}

-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
    UITouch *touch = [touches anyObject];//得到触摸对象
    CGPoint current = [touch locationInView:self];//得到当前触摸所在的点
    CGPoint previous = [touch previousLocationInView:self];//得到触摸所在的上一个点

    CGPoint center = self.center;//拿到UIView的中点
    center.x += current.x - previous.x;
    center.y += current.y - previous.y;
    self.center = center;
}

-(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {

}

【iOS开发-触摸】移动的UIView例子

原文:http://blog.csdn.net/ttf1993/article/details/45824647

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!