视频教程Swift零基础学习之手势移动图片App开发
1、创建一个项目
创建好了,我运行一下
2、添加图片到项目中
3、添加image view到storeboard
4、添加Pan Gesture Recognizor到storyboard
5、添加image view的outlet和pan的action
6、将下面代码复制到函数中
7、运行效果
let translation = sender.translation(in: self.view)
imageView.center = CGPoint(x:imageView.center.x + translation.x,y:imageView.center.y + translation.y)
sender.setTranslation(CGPoint.zero, in: self.view)
网友评论