gpt4 book ai didi

ios - 如何在不加载 ios 屏幕的情况下拍摄 View Controller 的快照?

转载 作者:可可西里 更新时间:2023-11-01 03:38:40 25 4
gpt4 key购买 nike

在我的 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com