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

ios 截屏,截图

时间:2014-11-12 19:47:11      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:ios   ipad   截屏   ios 截屏   

#pragma mark 截图
- (UIImage *)capture:(UIView *)view
{
    UIGraphicsBeginImageContextWithOptions(view.bounds.size, YES, 0.0);
    [view.layer renderInContext:UIGraphicsGetCurrentContext()];
    UIImage *img = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return img;
}

ios 截屏,截图

标签:ios   ipad   截屏   ios 截屏   

原文地址:http://blog.csdn.net/zhangping871/article/details/41048013

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