0
我上的賀卡應用程序的工作中我已經採取截屏並保存在畫廊所以給它適用於我的代碼如何採取屏幕截圖和截屏保存在相冊
我上的賀卡應用程序的工作中我已經採取截屏並保存在畫廊所以給它適用於我的代碼如何採取屏幕截圖和截屏保存在相冊
就像任何建議和源代碼所以:
- (UIImage *) captureScreen {
UIWindow *keyWindow = [[UIApplication sharedApplication] keyWindow];
CGRect rect = [keyWindow bounds];
UIGraphicsBeginImageContext(rect.size);
CGContextRef context = UIGraphicsGetCurrentContext();
[keyWindow.layer renderInContext:context];
UIImage *img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return img;
}
使用下面的教程然後保存圖像相機膠捲 http://mobiledevelopertips.com/camera/save-an-image-to-camera-roll.html
在http://stackoverflow.com/questions/2214957/how-do-i-take-a看看-screen拍 - -A-的UIView – bdesham