ホームボタン/オンオフではなくボタンを使用して、アプリから画面を保存しようとしています。を使用したコードでエラーが発生しますself
。
「タイプ「...myviewcontroller」のオブジェクトにプロパティウィンドウが見つかりません
- (IBAction)saveto:(id)sender {
if ([[UIScreen mainScreen] respondsToSelector:@selector(scale)])
UIGraphicsBeginImageContextWithOptions(self.window.bounds.size, NO, [UIScreen mainScreen].scale);
else
UIGraphicsBeginImageContext(self.window.bounds.size);
[self.window.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
NSData * data = UIImagePNGRepresentation(image);
[data writeToFile:@"my.png" atomically:YES];
(画像ビューは.hでアウトレットとして宣言されています)
私はここで基本的な何かが欠けていることを知っていますが、それを理解することはできません、どんな助けも大いに受けました