Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to print a local word docx file using UIPrintInteractionController.

I can print PDFs no problem, but I can't do the same for word docx document.

I have also tried converting it to a PDF, but I also get an error.

This is my approach

UIPrintInteractionController *print = [UIPrintInteractionController sharedPrintController];
NSData *dataFromPath = [NSData dataWithContentsOfFile:fileURL];
print.delegate = self;
UIPrintInfo *printInfo = [UIPrintInfo printInfo];
printInfo.outputType = UIPrintInfoOutputGeneral;
printInfo.jobName = [fileURL lastPathComponent];
printInfo.duplex = UIPrintInfoDuplexLongEdge;
print.printInfo = printInfo;
print.showsPageRange = YES;
print.printingItem = dataFromPath;

UIBarButtonItem* btnExport = [self.navigationItem.rightBarButtonItems objectAtIndex:0];

[print presentFromBarButtonItem:btnExport animated:YES
    completionHandler:^(UIPrintInteractionController *printInteractionController, BOOL completed, NSError *error) {
        if(error || !completed){
            if(error){
                [self showErrorMessage:[error localizedDescription]  title:@"Pdf Creating Error"];
                return;
            }
            return;
        }
        HUD = [[MBProgressHUD alloc]initWithView:self.view];
        HUD.customView = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"tick"]];
        [self.view addSubview:HUD];
        HUD.labelText = @"Sent to Printer";
        [HUD setMode:MBProgressHUDModeCustomView];
        [HUD show:YES];

        [HUD hide:YES afterDelay:1.5];
        HUD = nil;
    }];
}];

The error: failed to find PDF header: `%PDF' not found.

How can I print a word document using UIPrintInteractionController?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.