私の問題はこれです:[A presentViewController:B]しかし、私はAのビューを見たいです。私はそのような問題の解決策です。
つまり、UIWindow とは別の画像が必要です。
UIWindow *_applicationWindow = [[[UIApplication sharedApplication] delegate] window];
UIGraphicsBeginImageContext(_applicationWindow.bounds.size);
CGContextRef ctx = UIGraphicsGetCurrentContext();
[_applicationWindow.layer renderInContext:ctx];
UIImage *imageTemp = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImageView *_imageView = [[[UIImageView alloc] init] autorelease];
_imageView.image = imageTemp;
[B.veiw addSubview:_imageView];
しかし、_imageView は不明瞭です。</p>
ありがとう。