Build on a modern tech stack that integrates tightly with the platform you're working on. We grow with you as your requirements change and your project evolves.
#import <ComPDFKit_Conversion/ComPDFKit_Conversion.h>
- (void)convert {
NSString *pdfPath = @".../test.pdf";
NSString *wordPth = @".../test.docx";
CPDFConverterWord *converter = [[[CPDFConverterWord alloc] initWithURL:[NSURL fileURLWithPath:pdfPath] password:nil] autorelease];
[converter convertToFilePath:wordPth pageIndexs:nil options:nil];
}