如何截取尚未加载的 UIView 的屏幕截图?
为了解释我的 iPhone 应用程序的主要功能,我想创建一个模态视图,它在后台显示我的应用程序的一些屏幕截图,并在顶部显示一些说明。
我使用以下命令创建屏幕截图(在后台)
self.tabBarController.selectedIndex = selectedTab;
UIGraphicsBeginImageContext(CGSizeMake(320,480));
CGContextRef context = UIGraphicsGetCurrentContext();
[self.tabBarController.view.layer renderInContext:context];
UIImage *screenShot = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
,但我的 tabBarController 中的某些视图可能尚未完全加载。
此外,几乎所有视图的布局在屏幕截图中看起来都是扭曲的。
有什么建议吗?
谢谢你!
To explain the main features of my iPhone app I want to create a modal view, which shows some screen shots of my app in the background and some explanations on top.
I create the screen shots (in the background) with
self.tabBarController.selectedIndex = selectedTab;
UIGraphicsBeginImageContext(CGSizeMake(320,480));
CGContextRef context = UIGraphicsGetCurrentContext();
[self.tabBarController.view.layer renderInContext:context];
UIImage *screenShot = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
But some of the views in my tabBarController may not have been fully loaded yet.
Also the layout of almost all views looks distorted in the screen shots.
Any suggestions?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
先设计你的应用程序,不要先设计屏幕截图。从设备中获取真实的屏幕截图并对其进行注释并将其包含在您的应用程序中。
如果您不想这样做,那么您就会陷入困境。
Design your app first without the screenshots first. Take real screenshots from the device and annotate them and include them in your app.
If you don't want to do that, then you are stuck.