码迷,mamicode.com
首页 > 移动开发 > 详细

ios View拖拽

时间:2016-01-23 17:58:34      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:

 1 // 当手指在view上移动的时候调用
 2 - (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
 3 {
 4     
 5     UITouch *touch = [touches anyObject];
 6     // 0. 获取上一次的位置
 7     CGPoint prePoint = [touch previousLocationInView:self];
 8     
 9     // 1.获取当前的位置
10     CGPoint currentPoint = [touch locationInView:self];
11     
12     CGFloat moveX = currentPoint.x - prePoint.x;
13     CGFloat moveY = currentPoint.y - prePoint.y;
14     
15     // 2.改变当前视图的位置,为手指指定的位置
16     CGPoint temp =  self.center;
17     temp.x += moveX;
18     temp.y += moveY;
19     self.center = temp;
20 
21 }

 

ios View拖拽

标签:

原文地址:http://www.cnblogs.com/PJHome/p/5153434.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!