-2

I just created a web view programatically to load pdf and added YPDrawSignatureView to draw signature in the pdf view..

I cant able to retrieve the drawn signature while reopening again in the web view

created using this ref link: https://github.com/GJNilsen/YPDrawSignatureView

BizDev
  • 371
  • 1
  • 4
  • 21

1 Answers1

2

I cant able to retrieve the drawn signature while reopening again in the web view

There is a method in YPDrawSignatureView to let you export the new pdf data.

public func getPDFSignature() -> Data

You should save it when finish edited and present it again to the web view. You may have to save Data to your desired format.

Calvin
  • 575
  • 1
  • 4
  • 9