iOS 截屏方法

2018-06-14 14:06 更新
  1. //獲取屏幕截屏  
  2. - (UIImage*)getScreenShotsOfView:(UIView *)view{  
  3.     CGSize size = view.frame.size;  
  4.     UIGraphicsBeginImageContextWithOptions(size, NO, [UIScreen mainScreen].scale);  
  5.     CGContextRef context = UIGraphicsGetCurrentContext();  
  6.     [view.layer renderInContext:context];  
  7.     UIImage *img = UIGraphicsGetImageFromCurrentImageContext();  
  8.     UIGraphicsEndImageContext();  
  9.     return img;  
  10. }  

以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)