var indexSet = IndexSet()indexSet.insert(0)// Delete the first page of the document.document?.removePage(at: indexSet)
1 2 3 4 5
objective-c
NSMutableIndexSet *indexSet = [NSMutableIndexSet indexSet];[indexSet addIndex:0];// Delete the first page of the document.[document removePageAtIndexSet:indexSet];