如何截取尚未加载的 UIView 的屏幕截图?

发布于 2024-10-26 10:47:40 字数 542 浏览 1 评论 0原文

为了解释我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

幸福还没到 2024-11-02 10:47:44

先设计你的应用程序,不要先设计屏幕截图。从设备中获取真实的屏幕截图并对其进行注释并将其包含在您的应用程序中。

如果您不想这样做,那么您就会陷入困境。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文