是否可以将 UIView 及其子视图绘制到图形上下文中?

发布于 2024-11-26 11:08:40 字数 314 浏览 2 评论 0原文

我有一个 UIView 代表一个简单的列表和一个图像。我正在寻找一种方法来导出此列表,就像它在 UIView 中的样子一样导出到 PFD 文件中,从而避免再次排列和绘制元素的需要。比如:

CGPDFContextBeginPage(myPDFContext, &pageDictionary);
    //draw here the UIView into the context
CGPDFContextEndPage(myPDFContext);

我尝试使用 renderInContext 方法,但只绘制视图,而没有绘制其子视图。

I have an UIView that represents a simple list and an image. I'm looking for a way to export this list, exactly how it looks in the UIView into a PFD file, avoiding the need to arrange and draw the elements again. Something like:

CGPDFContextBeginPage(myPDFContext, &pageDictionary);
    //draw here the UIView into the context
CGPDFContextEndPage(myPDFContext);

I tried to use renderInContext method but only the view is drawn, without its subviews.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

二智少女猫性小仙女 2024-12-03 11:08:40

似乎应该有更好的方法,但您也可以迭代所有子视图并对它们调用 renderInContext

Seems like there should be a better way, but you could just iterate over all subviews and call renderInContext on them too.

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