Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个视图,其中插入了许多文本字段和值。现在我想将此视图保存为图像或 pdf。
有什么办法可以做到这一点?我正在为该项目使用 IOS 5.1
您可以截取视图并保存:
UIGraphicsBeginImageContext(self.view.frame.size); [[self.view layer] renderInContext:UIGraphicsGetCurrentContext()]; UIImage *screenshot = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext();
现在您有了整个视图内容的 UIImage,您可以按照自己喜欢的方式使用它。