HTML5   发布时间:2022-04-27  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了如何拍摄视频控制器的快照而不在ios的屏幕中加载?大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的iPAD应用程序中,我有两个viewcontrollers,第一个viewcontroller有一个按钮,我想在我点击该按钮时获取第二个viewcontroler的快照,而不在iPAD屏幕中加载第二个viewcontroller.
如果我加载viewcontroler然后拍摄快照然后它正在工作但我的要求是做同样的事情而不在屏幕上加载viewcontroler.
请提供想法或链接代码段.

解决方法@H_696_9@
试试这个:-
制作要拍摄屏幕截图的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的屏幕中加载?所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。