美文网首页
相机截图的代码

相机截图的代码

作者: 女孩的日常流水 | 来源:发表于2017-07-12 23:55 被阅读53次

在相机的页面实现,截图,话不多说,直接上代码

-(UIImage*)captureView:(UIView *)theView{

    UIGraphicsBeginImageContext(CGSizeMake(theView.size.width, theView.size.height));

    [theView drawViewHierarchyInRect:CGRectMake(0, 0,theView.size.width, theView.size.height) afterScreenUpdates:NO];

    UIImage *img = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    return img;

}

相关文章

网友评论

      本文标题:相机截图的代码

      本文链接:https://www.haomeiwen.com/subject/suvihxtx.html