从 UITableView 创建 pdf 文件
我的问题是如何将内容从我的视图获取到 CreateMethod 中。在文章中它有一个这样的调用:
NSString *content = textView.text; //this is the UITextView, containing our text.
How do I get the content because I'm using a UITable View. 。 。实际上,我也想获得包含表格之前的所有信息的整个视图。
有什么想法或者至少能推动正确的方向吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将 UITableView 绘制为图像 - 它可能不太好(您可能想要文本),但这相对便宜。这只是一个框架,为了理解这个想法:
You can draw the UITableView as an image - it's probably not great (you may wanna text), but this would be relatively cheap. This is just a skeleton, to get the idea:
[tableView.layer renderInContext:UIGraphicsGetCurrentContext()];
它呈现表格视图和抓取所有表格视图和制作表格视图的 pdf。
[tableView.layer renderInContext:UIGraphicsGetCurrentContext()];
it render the table view & grab all table view & make pdf of the table view.