ios  屏幕截图返回成图片的方法

来源:互联网 发布:赵云人气 知乎 编辑:程序博客网 时间:2024/06/03 15:25

#pragmamark- 截图

-(UIImage*)screenshot:(UIView*)inputView{

   UIGraphicsBeginImageContextWithOptions(inputView.bounds.size,NO,0);

   [inputView drawViewHierarchyInRect:inputView.frameafterScreenUpdates:YES];

   UIImage*image= UIGraphicsGetImageFromCurrentImageContext();

   

   UIGraphicsEndImageContext();

   returnimage;

}

原创粉丝点击