Convert PDF Documents to CSV Documents
// Get the path of the PDF file.
NSString *pdfPath = @"...";
// Get the path to the ZIP file.
NSString *outputPath = @"...";
CPDFConvertCsvOptions * options = [[[CPDFConvertCsvOptions alloc] init] autorelease];
[options setIsMergeCSV:NO];
CPDFConverterCsv *converter = [[[CPDFConverterCsv alloc] initWithURL:[NSURL fileURLWithPath:pdfPath] password:nil] autorelease];
[converter convertToFilePath:outputPath pageIndexs:nil options:options];