美文网首页OC
ios OC 截取当前屏幕返回图片

ios OC 截取当前屏幕返回图片

作者: 曹九朵_ | 来源:发表于2016-11-24 12:28 被阅读56次
-(UIImage *)screenImageWithSize:(CGSize )imgSize{ UIGraphicsBeginImageContext(imgSize); 
CGContextRef context = UIGraphicsGetCurrentContext(); 
AppDelegate * app = (AppDelegate *)[UIApplication sharedApplication].delegate; 
[app.window.layer renderInContext:context]; 
UIImage * img = UIGraphicsGetImageFromCurrentImageContext(); 
UIGraphicsEndImageContext(); 
return img;}

相关文章

网友评论

    本文标题:ios OC 截取当前屏幕返回图片

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