//代码截屏
// UIGraphicsBeginImageContext(view.frame.size);
// //对哪个视图截图给定大小的图片
// [ view.layer renderInContext:UIGraphicsGetCurrentContext()];
//
// //获取截图的图片对象
// UIImage * image = UIGraphicsGetImageFromCurrentImageContext();
// //结束绘制图片
// UIGraphicsEndImageContext();
// //保存到相册
// UIImageWriteToSavedPhotosAlbum(image, nil, nil, nil);
原文地址:http://qccccc.blog.51cto.com/6004423/1548909