ios 中长按图片或者二维码,保存图片到手机的方法

Posted 雅尘恋

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ios 中长按图片或者二维码,保存图片到手机的方法相关的知识,希望对你有一定的参考价值。

 self.imageView = [[UIImageView alloc]init];

    self.imageView.frameCGRectMake(30, titleLabel.height+30, self.neirongView.width-60, 170);

    self.imageView.contentMode=UIViewContentModeScaleAspectFit;

    

    [self.imageView setImageWithURL:[NSURL URLWithString:_ImageUrl]];

    [self.neirongView addSubview:self.imageView];

    self.imageView.tag = 1234;

//    self.imageView.backgroundColor =Table_BGColor;

    self.imageView.userInteractionEnabled =YES;

    UILongPressGestureRecognizer*longpress=[[UILongPressGestureRecognizer alloc]initWithTarget:self action:@selector(imageClick)];

    //判定为长按手势 需要的时间

    longpress.minimumPressDuration = 1;

    [self.imageView addGestureRecognizer:longpress];

 

 

 

-(void)imageClick{

UIImageView *myImageView = (UIImageView *)[self viewWithTag:1234];

        UIImageWriteToSavedPhotosAlbum(myImageView.imageself@selector(image:didFinshSavingWithError:contextInfo:), nil);


}

 

 

 

// 保存图片错误提示方法

- (void)image:(UIImage *)image didFinshSavingWithError:(NSError *)error contextInfo:(void *)contextInfo

{

    

    

    NSString *mes = nil;

    if (error != nil) {

        mes = @"保存图片失败";

    } else {

        mes = @"保存图片成功";

    }

   

    [self makeToast:mes];

    [NSTimer scheduledTimerWithTimeInterval:0.8f target:self selector:@selector(fadeOut) userInfo:nil repeats:NO];

}

 

- (void)fadeOut{

    [UIView animateWithDuration:.35 animations:^{

        self.alpha = 0.0;

    }completion:^(BOOL finished) {

        if (finished){

            [self removeFromSuperview];

        }

    }];

}


以上是关于ios 中长按图片或者二维码,保存图片到手机的方法的主要内容,如果未能解决你的问题,请参考以下文章

手机端app h5页面怎么禁用长按选中

苹果手机更新15.2.1版本后,长按图片很久才会出现保存图片弹窗,要么出现透明图片,要么出现复制?

苹果手机在百度知道上长按不能保存图片,请问怎么才能保存

Jquery生成二维码(微信中长按图片识别二维码功能)

二维码生成后保存到本地怎么找不到

ios怎么保存别人回答给你的图片?长按了图片没有用。