目录
iOS开发 长按图片保存到相册
今天自己写了个生成二维码的demo,二维码生成以后不会自动保存,之前也没做过,在网上找了各种资料,然后自己写了一个,给大家指点,不足之处请指出。谢谢!
代码
//先初始化一个长按手势
UILongPressGestureRecognizer *longPressGesture = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(longPressGesture:)];//给手势添加事件
//设置长按时间
longPressGesture.minimumPressDuration =1.5;//(2秒)
_imageView=[[UIImageView alloc] initWithFrame:CGRectMake(200, 50, 80,80 )];
_imageView