热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

UIScreen上的snapshotViewAfterScreenUpdates在设备上显示空白快照

如何解决《UIScreen上的snapshotViewAfterScreenUpdates在设备上显示空白快照》经验,请问有什么解决方案?

我试图在用户看到它时获得整个屏幕的图像.以下代码应该可以工作,但它只能在模拟器中工作.我该怎么做才能让这个在运行iOS 8.1的设备上运行?

UIView *snapshot = [[UIScreen mainScreen] snapshotViewAfterScreenUpdates:YES];
CGSize outputSize = CGSizeMake([UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height);
UIGraphicsBeginImageContextWithOptions(outputSize, NO, 0);
[snapshot drawViewHierarchyInRect:CGRectMake(0.0, 0.0, outputSize.width, outputSize.height) afterScreenUpdates:YES];
UIImage *img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

很高兴尝试其他策略,但关键是我想要它,因为用户看到它 - 键盘和所有.

干杯


推荐阅读
author-avatar
火云邪神
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有