作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
在我的 iPAD 应用程序中,我有两个 View Controller ,第一个 View Controller 有一个按钮,我想在单击该按钮时获取 第二个 View Controller 的快照,而不在 iPAD 屏幕中加载第二个 View Controller .如果我加载 viewcontroler 然后拍摄快照,那么它正在工作,但我的要求是在不在屏幕中加载 viewcontroler 的情况下执行相同的操作。请提供想法或链接或代码片段。
最佳答案
试试这个:-制作一个你想截屏的VC实例,然后在这个方法中传递对象。
+ (UIImage *)renderImageFromView:(UIView *)view withRect:(CGRect)frame {
// Create a new context the size of the frame
UIGraphicsBeginImageContextWithOptions(frame.size, YES, 0);
CGContextRef context = UIGraphicsGetCurrentContext();
// Render the view
[view.layer renderInContext:context];
//[view drawRect:frame];
// Get the image from the context
UIImage *renderedImage = UIGraphicsGetImageFromCurrentImageContext();
// Cleanup the context you created
UIGraphicsEndImageContext();
return renderedImage;
}
关于ios - 如何在不加载 ios 屏幕的情况下拍摄 View Controller 的快照?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24821844/
我是一名优秀的程序员,十分优秀!