`
jsntghf
  • 浏览: 2480052 次
  • 性别: Icon_minigender_1
  • 来自: 苏州
社区版块
存档分类
最新评论

截屏的方法

    博客分类:
  • iOS
阅读更多

首先加入头文件#import <QuartzCore/QuartzCore.h>,并载入QuartzCore.framework库。

 

UIGraphicsBeginImageContext(self.view.bounds.size);	
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()]; 	
UIImage *image= UIGraphicsGetImageFromCurrentImageContext();	
UIGraphicsEndImageContext();
UIImageWriteToSavedPhotosAlbum(image, nil, nil, nil);

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics