如何使用 ios swift 保存和检索 pdf 注释 3
How to save and retrieve pdf annotation using ios swift 3
我刚刚以编程方式创建了一个 Web 视图来加载 pdf 并添加了 YPDrawSignatureView 以在 pdf 视图中绘制签名..
在网络视图中再次打开时我无法检索绘制的签名
使用此参考创建 link:
https://github.com/GJNilsen/YPDrawSignatureView
I cant able to retrieve the drawn signature while reopening again in
the web view
YPDrawSignatureView
中有一个方法可以让您导出新的pdf数据。
public func getPDFSignature() -> Data
您应该在完成编辑后保存它并再次将其呈现到网络视图中。您可能需要将 Data
保存为您想要的格式。
我刚刚以编程方式创建了一个 Web 视图来加载 pdf 并添加了 YPDrawSignatureView 以在 pdf 视图中绘制签名..
在网络视图中再次打开时我无法检索绘制的签名
使用此参考创建 link: https://github.com/GJNilsen/YPDrawSignatureView
I cant able to retrieve the drawn signature while reopening again in the web view
YPDrawSignatureView
中有一个方法可以让您导出新的pdf数据。
public func getPDFSignature() -> Data
您应该在完成编辑后保存它并再次将其呈现到网络视图中。您可能需要将 Data
保存为您想要的格式。