美文网首页学Swift挣美金iosios开源项目
视频教程Swift零基础学习之手势移动图片App开发

视频教程Swift零基础学习之手势移动图片App开发

作者: iCloudEnd | 来源:发表于2019-04-09 12:50 被阅读14次

视频教程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)

相关文章

网友评论

    本文标题:视频教程Swift零基础学习之手势移动图片App开发

    本文链接:https://www.haomeiwen.com/subject/yxjbiqtx.html