屏幕截图功能源码
一款不错的屏幕截图功能源码,主要我们点击按钮进行截屏操作了,同时也可以将截屏图像保存到相册中等功能,大家可以下载学习看看吧。 //获取当前屏幕内容 - (UIImage *)getNormalImage:(UIView *)view{ float width = [UIScreen mainScreen].bounds.size.width; float height = [UIScreen mainScreen].bounds.size.height; UIGraphicsBeginImageContext(CGSizeMake(width, height)); CGContextRef context = UIGraphicsGetCurrentContext(); [view.layer renderInContext:context]; UIImage *image = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); return image; }
文件列表
屏幕截图功能源码.zip
(预估有个19文件)
源码说明.htm
3KB
demo
Localiable.strings
128B
ViewController.m
2KB
.DS_Store
6KB
demo-Prefix.pch
311B
en.lproj
ViewController.xib
357KB
InfoPlist.strings
45B
main.m
333B
暂无评论