博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS开发 代码 或 <Home+Power>截屏
阅读量:4983 次
发布时间:2019-06-12

本文共 3340 字,大约阅读时间需要 11 分钟。

1. 截屏的两种简单方法,

注意这两种截图方法,都必须在视图完全加载完成后才能截图,即在 viewDidAppear 方法之后截屏,否则无法得到想要的截屏效果

(1) 利用绘图方法 renderInContext

/** *  截取当前屏幕的内容 */- (void)snapshotScreen{    // 判断是否为retina屏, 即retina屏绘图时有放大因子    if ([[UIScreen mainScreen] respondsToSelector:@selector(scale)]){        UIGraphicsBeginImageContextWithOptions(self.view.window.bounds.size, NO, [UIScreen mainScreen].scale);    } else {        UIGraphicsBeginImageContext(self.view.window.bounds.size);    }    [self.view.window.layer renderInContext:UIGraphicsGetCurrentContext()];    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();    UIGraphicsEndImageContext();// 保存到相册    UIImageWriteToSavedPhotosAlbum(image, nil, nil, nil);}

该方法可以更改为截取某个视图的内容

/** *  截取某视图的内容 */- (void)snapshotScreenInView:(UIView *)view{    if ([[UIScreen mainScreen] respondsToSelector:@selector(scale)]){        UIGraphicsBeginImageContextWithOptions(view.bounds.size, NO, [UIScreen mainScreen].scale);    } else {        UIGraphicsBeginImageContext(view.bounds.size);    }    [view.layer renderInContext:UIGraphicsGetCurrentContext()];    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();    UIGraphicsEndImageContext();        UIImageWriteToSavedPhotosAlbum(image, nil, nil, nil);    }

(2) . 利用iOS 7之后UIView提供的方法 drawViewHierarchyInRect: afterScreenUpdates:

/** *  截取一个contentView的内容 * *  @param contentView */- (void)snapshotScreenInView:(UIView *)contentView {    CGSize size = contentView.bounds.size;    UIGraphicsBeginImageContextWithOptions(size, NO, [UIScreen mainScreen].scale);    CGRect rect = contentView.frame;    //  自iOS7开始,UIView类提供了一个方法-drawViewHierarchyInRect:afterScreenUpdates: 它允许你截取一个UIView或者其子类中的内容,并且以位图的形式(bitmap)保存到UIImage中    [contentView drawViewHierarchyInRect:rect afterScreenUpdates:YES];        UIImage *image = UIGraphicsGetImageFromCurrentImageContext();    UIGraphicsEndImageContext();        UIImageWriteToSavedPhotosAlbum(image, nil, nil, nil);}

当然以上两种方法,我还没办法截屏到Status Bar(时间,网络状态等),如果截图中需要这些信息,就可以通过<Home+Power键>来截屏获取截屏图片

2 . 监听手机<Home + Power>键截屏,并获取截屏图片

(1) . 在合适的位置给应用添加监听,监听手机截屏动作

/** *  为
添加监听 * selector 为监听到截屏后调用的方法 */- (void) addScreenshotObserverWithSlelctor:(SEL)selector { [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(selector) name:UIApplicationUserDidTakeScreenshotNotification object:nil]; }

(2) . 监听到截屏在相册中查找最新的一张图片即为截屏图片,添加 #import <Photos/Photos.h>

/** *  相册中最新的一张图片 */- (void)latestAssetImage {      // 获取所有资源的集合,并按资源的创建时间排序    PHFetchOptions *options = [[PHFetchOptions alloc] init];    options.sortDescriptors = @[[NSSortDescriptor sortDescriptorWithKey:@"creationDate" ascending:NO]];    PHFetchResult *assetsFetchResults = [PHAsset fetchAssetsWithOptions:options];    PHAsset *asset = [assetsFetchResults firstObject];    // 使用PHImageManager从PHAsset中请求图片    PHImageManager *imageManager = [[PHImageManager alloc] init];    [imageManager requestImageForAsset:asset targetSize:PHImageManagerMaximumSize contentMode:PHImageContentModeAspectFill options:nil resultHandler:^(UIImage * _Nullable result, NSDictionary * _Nullable info) {        if (result) {           // result 即为查找到的图片,也是此时的截屏图片        }    }];}

转载于:https://www.cnblogs.com/jaesun/p/iOS-kai-fa-dai-ma-huo-HomePowerjie-ping.html

你可能感兴趣的文章
使用外语会影响我们的道德判断
查看>>
菜鸟学Java第一天
查看>>
【freemaker】之自定义指令通用select模版
查看>>
PHP类和对象之重载
查看>>
解决 win10 由于磁盘缓慢造成机器迟钝
查看>>
flask-信号
查看>>
Spring-Cloud的版本是如何定义的
查看>>
传入class、id name 的函数封装
查看>>
软工网络15团队作业3——需求分析与设计
查看>>
python 类对象和实例对象动态添加方法
查看>>
【转】C#生成验证码
查看>>
Linux环境下JDK/Eclipse一键安装脚本
查看>>
HwUI,CMS管理系统模板,漂亮,简单,兼容好
查看>>
特意给我的轩写的小知识
查看>>
LibreOJ #2003. 「SDOI2017」新生舞会
查看>>
sublime text there are no packages available for installation 解决办法
查看>>
Piston Pump Manufacturers - Mobile Cartridge Piston Pump: Advantages
查看>>
我喜欢的几款不错的vim插件
查看>>
eclipse在ubuntu13.04下崩溃crash
查看>>
wpf 右键ListBox可编辑
查看>>