Skip to content

插入页面

插入空白页面,或插入其他 PDF 页面到目标页面中。

插入空白页面

以下是插入空白页面的示例代码:

swift
document?.insertPage(CGSize(width: 595, height: 852), withImage: "", at: 0)// InsertPage方法可以指定一个图片路径,当图片路径为空时即插入空白页面。
objective-c
[document insertPage:CGSizeMake(595, 852) withImage:"" atIndex:0]// InsertPage方法可以指定一个图片路径,当图片路径为空时即插入空白页面。

插入其他 PDF 页面

以下是插入其他 PDF 页面的示例代码:

swift
let insertDocument = CPDFDocument(url: URL(fileURLWithPath: "OtherPDF.pdf"))
var indexSet = IndexSet()
indexSet.insert(0)

document?.importPages(indexSet, from: insertDocument, at: 0)
objective-c
CPDFDocument *insertDocument = [[CPDFDocument alloc] initWithURL:[NSURL fileURLWithPath:@"OtherPDF.pdf"]];
NSMutableIndexSet *indexSet = [NSMutableIndexSet indexSet];
[indexSet addIndex:0];

[document importPages:indexSet fromDocument:insertDocument atIndex:0];