您的位置:首页 > 移动开发 > IOS开发

ios 双指捏合放大缩小图片的例子

2013-06-25 15:09 246 查看
图片跟随双指捏合的距离放大或者缩小。

利用-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event 实现。

touchesMoved每当手指在屏幕上移动的时候都会运行。

1.检测手指的个数

NSArray * touchesArr=[[event allTouches] allObjects];
NSLog(@"手指个数%d",[touchesArr count]);

2.检测两指的坐标,从而计算两指的距离。

p1=[[touchesArr objectAtIndex:0] locationInView:self.view];
p2=[[touchesArr objectAtIndex:1] locationInView:self.view];

3.计算距离增加,则增大图片,距离减小则缩小图片。用imageview的frame来控制图片的大小。

imageView.frame=CGRectMake(imgFrame.origin.x-addwidth/2.0f, imgFrame.origin.y-addheight/2.0f, imgFrame.size.width, imgFrame.size.height);
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: