0
我想捕獲圖像間轉換的屏幕截圖。如何捕獲轉換的屏幕截圖
- (UIImage *)captureView:(UIView *)view
{
CGRect screenRect = [[UIScreen mainScreen] bounds];
UIGraphicsBeginImageContext(screenRect.size);
CGContextRef ctx = UIGraphicsGetCurrentContext();
[[UIColor blackColor] set];
CGContextFillRect(ctx, screenRect);
[view.layer.presentationLayer renderInContext:ctx];
UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return newImage;
}
我圖像的播放UIImageView的轉變過程中調用此方法,但是,我剛剛在UIImageView的靜止圖像,但不能捕捉圖像之間的過渡。 任何人都可以幫助我?
我認爲你誤解了。他需要以編程方式進行。:) – Ganapathy
感謝texian,但是我仍然無法在按住Shift鍵3次後趕上過渡。我錯過了什麼? – user2227366