1

嗨,有人可以帮我吗?我是 iOS 开发的新手。我正在尝试实现打印功能,但我遇到了错误。我只看到.xib带有一些labels. 在textview那里,我只想打印那个视图......当我按下打印按钮时,程序崩溃了......

这是我的代码:

- (NSData *)generatePDFDataForPrinting {
    NSMutableData *myPdfData = [NSMutableData data];
    UIGraphicsBeginPDFContextToData(myPdfData, kPDFPageBounds, nil);
    UIGraphicsBeginPDFPage();
    CGContextRef ctx = UIGraphicsGetCurrentContext();
    [self drawStuffInContext:ctx];  // Method also usable from drawRect:.
    UIGraphicsEndPDFContext();
    return myPdfData;
}

- (void)drawStuffInContext:(CGContextRef)ctx {
    UIFont *font = [UIFont fontWithName:@"Zapfino" size:48];
    CGRect textRect = CGRectInset(kPDFPageBounds, 36, 36);
    [@"hello world!" drawInRect:textRect withFont:font];
}


- (IBAction)printFromIphone:(id)sender {
    float systemVersion = [[[UIDevice currentDevice] systemVersion] floatValue];

    if (systemVersion>4.1) {

        NSData *myPdfData = [NSData dataWithContentsOfFile:myPdfData]; //check the value inside |myPdfData| and |pdfPath| is the path of your pdf.
        UIPrintInteractionController *controller = [UIPrintInteractionController sharedPrintController];
        if (controller && [UIPrintInteractionController canPrintData:myPdfData]){
            //controller.delegate = delegate; //if necessary else nil
            UIPrintInfo *printInfo = [UIPrintInfo printInfo];
            printInfo.outputType = UIPrintInfoOutputGeneral;
            printInfo.jobName = [myPdfData lastPathComponent];
            //printInfo.duplex = UIPrintInfoDuplexLongEdge;
            controller.printInfo = printInfo;
            controller.showsPageRange = YES;
            controller.printingItem = myPdfData;

            // We need a completion handler block for printing.
            UIPrintInteractionCompletionHandler completionHandler = ^(UIPrintInteractionController *printController, BOOL completed, NSError *error) {
                if(completed && error){
                    NSLog(@"FAILED! due to error in domain %@ with error code %u", error.domain, error.code);
                }
            };

            //            [controller presentFromRect:CGRectMake(200, 300, 100, 100) inView:senderView animated:YES completionHandler:completionHandler];
        }else {
            NSLog(@"Couldn't get shared UIPrintInteractionController!");
        }
    }
}
4

1 回答 1

0

不确定它是否是错字,但您已经注释掉了您的实际 pdfData 这就是它未声明的原因。

此行需要取消注释,因为您需要myPdfData.

//NSData *myPdfData = [NSData dataWithContentsOfFile:pdfData]; //check the value inside |myPdfData| and |pdfPath| is the path of your pdf.

您可以用此行替换它以使用您的 pdf 而不是文件。

NSData *myPdfData = [self generatePDFDataForPrinting];
于 2013-01-17T13:36:44.623 回答