标签:style color os io ar 代码 sp on c
代码截屏分五步:1.设置要截屏的图片大小 UIGraphicsBeginImageContext(aView.frame.size);
2.对哪个视图截图固定大小的图片 [aView.layer renderInContext:UIGraphicsGetCurrentContext()];
3.获取截屏对象 UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
4.结束绘制图片
UIGraphicsEndImageContext();
5.保存到相册 UIImageWriteToSavedPhotosAlbum(image, nil, nil, nil);
标签:style color os io ar 代码 sp on c
原文地址:http://blog.csdn.net/hakusan/article/details/39026015