美文网首页
iOS 截图保存相册最佳实现,游戏中使用

iOS 截图保存相册最佳实现,游戏中使用

作者: VincentHK | 来源:发表于2018-06-11 16:04 被阅读0次
            UIGraphicsBeginImageContext([[UIApplication sharedApplication] keyWindow].rootViewController.view.frame.size);
            CGContextRef context = UIGraphicsGetCurrentContext();
            [[[UIApplication sharedApplication] keyWindow].layer renderInContext:context];
            UIImage *theImage = UIGraphicsGetImageFromCurrentImageContext();
            UIGraphicsEndImageContext();
            UIImageWriteToSavedPhotosAlbum(theImage, self, nil, nil);

    相关文章

      网友评论

          本文标题:iOS 截图保存相册最佳实现,游戏中使用

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