我在iOS中加载了可编辑的pdf。但无法确定用户是否对该pdf进行了任何更改。
NSData *fileData = [NSData dataWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"PdfFormExample" ofType:@"pdf"]];
PDFDocument *pdfDocument = [[PDFDocument alloc] initWithData:fileData];
PDFView *pdfView = [[PDFView alloc] initWithFrame:self.view.frame];
pdfView.document = pdfDocument
[self.view addSubView:pdfView];
先谢谢。
答案 0 :(得分:0)
您可以使用PDFKit控制pdf并将其加载到iOS应用程序中。它由苹果提供。因此,您必须首先为PDF设置委托
PDFDocumentDelegate
PDFDocumentDidBeginPageWriteNotification
PDFDocumentDidEndPageWriteNotification
以上任何一项根据您想要进行更改的时间。
如果您想要更多参考,请点击链接: