我按此按钮可以在按下按钮时保存应用的屏幕截图:
UIGraphicsBeginImageContext(_containerView.frame.size);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImageWriteToSavedPhotosAlbum(viewImage, nil, nil, nil);
它过去是正确的(即屏幕上的所有内容),但现在放置一个白色条形广告(iAd / AdMob),它看起来很难看。屏幕截图中的广告看起来要好得多。有什么想法可能会发生什么?