iamが1つのアプリケーションを実行しています。その中で、画像付きの1つのimageviewを使用し、すっきりとした穴のある1つのビューを追加します。 ).Iamは以下のコードを使用していますが、機能していません。
- (UIImage*)captureView:(UIView *)yourView {
CGRect rect = [[UIScreen mainScreen] bounds];
UIGraphicsBeginImageContext(rect.size);
CGContextRef context = UIGraphicsGetCurrentContext();
[yourView.layer renderInContext:context];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return image;
}
しかし、それは機能していません。