Did you find this guide helpful?
Some test text!
iOS / Guides / Remove annotation
To remove an annotation from a document.
PTPDFDoc *doc = [[PTPDFDoc alloc] initWithFilepath: filename];
PTPage *page = [doc GetPage:1];
// remove by index
[page AnnotRemoveWithIndex:0];
// remove by annotation
PTAnnot *annotation = [page GetAnnot:0];
[page AnnotRemoveWithAnnot:annotation];
Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales