美文网首页项目需要
iOS ● 点击截屏

iOS ● 点击截屏

作者: MyiOS | 来源:发表于2016-10-26 17:19 被阅读131次
    - (void) Screener
    {
        UIGraphicsBeginImageContextWithOptions(self.view.frame.size, NO, 0.0);
        
        //截屏带导航栏
        [self.navigationController.view.layer renderInContext:UIGraphicsGetCurrentContext()];
        //截屏不带导航栏
        [self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
        
        //image为截图 , 可以用来分享
        UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
        
        UIGraphicsEndImageContext();
        //保存到手机相册
        UIImageWriteToSavedPhotosAlbum(image, nil, nil,nil);
    }
    

    相关文章

      网友评论

      本文标题:iOS ● 点击截屏

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