0

画面をキャプチャしようとしていますが、画像ビューに画像が1つしかない場合は完全に機能します....しかし、UIImageViewをアニメーション化すると、空のスクリーンショットが表示されます..

  CGRect rect = [self.view bounds];
  UIGraphicsBeginImageContext(rect.size);
  CGContextRef context = UIGraphicsGetCurrentContext();
  [self.view.layer renderInContext:context];
  UIImage *capturedScreen = UIGraphicsGetImageFromCurrentImageContext();
  UIGraphicsEndImageContext();
  UIImageWriteToSavedPhotosAlbum(capturedScreen, nil, nil, nil);
4

1 に答える 1