当前位置: 代码迷 >> Iphone >> iphone 截屏封存
  详细解决方案

iphone 截屏封存

热度:48   发布时间:2016-04-25 06:21:01.0
iphone 截屏保存
UIGraphicsBeginImageContext(self.view.bounds.size);//UIGraphicsBeginImageContextWithOptions(self.view.bounds.size, NO, 0.0);[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();UIGraphicsEndImageContext();UIImageWriteToSavedPhotosAlbum(viewImage, self, nil, nil);
?
  相关解决方案