码迷,mamicode.com
首页 > 移动开发 > 详细

iOS中控件的截屏

时间:2016-11-05 12:17:38      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:ios   graph   text   uiimage   rom   apu   phi   put   生成   

+ (UIImage *)imageWithCaputureView:(UIView *)view

{

 

    // 开启位图上下文

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

    

    // 获取上下文

    CGContextRef ctx = UIGraphicsGetCurrentContext();

    

    // 把控件上的图层渲染到上下文,layer只能渲染

    [view.layer renderInContext:ctx];

    

    // 生成一张图片

    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();

    

    // 关闭上下文

    UIGraphicsEndImageContext();

    

    return image;

}

 

iOS中控件的截屏

标签:ios   graph   text   uiimage   rom   apu   phi   put   生成   

原文地址:http://www.cnblogs.com/CJH5209/p/6032577.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!