1
私のアプリケーションでスクリーンショットを撮っています。スクリーンショットを撮ることができましたが、今は x座標とy座標を指定して取りたいです。私はy = 40からスクリーンショットを撮ることを意味します。それは可能ですか?UIGraphicsBeginImageContext位置の設定方法は?
UIGraphicsBeginImageContext(screenshot.frame.size);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
http://stackoverflow.com/a/5538275/1077722 –