本博客翻譯自蘋果問答中心,原文連接在此。html
問:在iOS7以及之後的版本中,我怎樣對一個UIView對象或者其子類對象截屏,並將截取的內容以UIImage的形式存儲?ios
答:自iOS7開始,UIView類提供了一個方法-drawViewHierarchyInRect:afterScreenUpdates:,它容許你截取一個UIView或者其子類中的內容,而且以位圖的形式(bitmap)保存到UIImage中,包括UIKit,Quartz,OpenGL ES,SpriteKit等等。在iOS6以及更早的版本中,怎樣對UIView截屏從本質來講取決於繪製技術(drawing technique)。app
看下面的代碼示例,在iOS7及以上更高版本中,使用-drawViewHierarchyInRect:afterScreenUpdates,截取一個View中內容,ui
#pragma mark - Private method編碼
- (UIImage *)snapshot:(UIView *)viewspa
{翻譯
UIGraphicsBeginImageContextWithOptions(view.bounds.size, YES, 0);3d
[view drawViewHierarchyInRect:view.bounds afterScreenUpdates:YES];orm
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();htm
UIGraphicsEndImageContext();
return image;
}
上面是翻譯的內容,說一說我是怎樣在代碼中具體使用的吧。
假設self.view上面有一個sourceImageView和一個destinationImageView,我想截取sourceImageView視圖的內容,保存在UIImage中,而後賦值給destinationImageView.image,代碼以下所示(注:使用arc、xib編碼,不少細節不要在乎,嘿嘿),
- (IBAction)captureButtonClicked:(id)sender
{
self.destinationImageView.image = [self snapshot:self.sourceImageView];
}
#pragma mark - Private method
- (UIImage *)snapshot:(UIView *)view
{
UIGraphicsBeginImageContextWithOptions(view.bounds.size,YES,0);
[view drawHierarchyInRect:view.bounds afterScreenUpdates:YES];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return image;
}
很簡單的代碼,也沒什麼困難的地方。這裏,我是將UIImageView對象sourceImageView做爲參數傳入,是比較簡單的狀況;有的時候咱們須要在應用程序中獲取當前self.view中的內容,能夠將self.view做爲參數傳入。
本人建了一個ios交流羣188647173,有興趣的能夠加羣進來相互交流。