开发笔记 那些年追过的图片(七):屏幕截图

来源:互联网 发布:恺英网络王悦垃圾 编辑:程序博客网 时间:2024/05/22 09:40

站在巨人的肩膀我们会看见山后面的海


引入 动画库

#include <QuartzCore/QuartzCore.h> 




-(UIImage * )imageFromView:(UIView *)theView

{

    UIGraphicsBeginImageContext(theView.frame.size);

    CGContextRef context =UIGraphicsGetCurrentContext();

    [theView.layer renderInContext:context];

    UIImage *theImage = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    return theImage;

}


原创粉丝点击