我尝试将屏幕截图移到屏幕的一半并将其保存到照片库。 我使用下面的代码工作得很好,但它捕获了我的所有屏幕。 我需要它的一半屏幕。我正在使用xcode 4.4。我知道有很多问题 关于这个。但我不能让它工作得到错误。请帮助
IGraphicsBeginImageContext(self.view.bounds.size);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImageWriteToSavedPhotosAlbum(newImage, nil, nil, nil);
答案 0 :(得分:0)
在您的第UIGraphicsBeginImageContext(self.view.bounds.size.width,self.view.bounds.size.height/2.0);
行
替换此行
希望它可以帮助你..