このコードでスクリーンショットを撮っています
- (UIImage *)screenshot {
UIGraphicsBeginImageContext(self.bounds.size);
[self.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return image;
}
しかし、結果の画像にはアルファ効果とぼかし効果が正しく表示されていません
これを修正する方法はありますか?