拖动实现图片移动效果 先写一个手势,注意图片的 userInteractionEnabled设置为yes UIPanGestureRecognizer *pan = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selecto ...
分类:
移动开发 时间:
2017-05-19 12:55:36
阅读次数:
207
拖动实现图片移动效果
先写一个手势,注意图片的 userInteractionEnabled设置为yes
UIPanGestureRecognizer *pan = [[UIPanGestureRecognizer
alloc]
initWithTarget:self
action:@selector(pan:)];
UIImage *image...
分类:
移动开发 时间:
2015-07-01 18:24:32
阅读次数:
160