1

假设您有一个只有文本(即 UILabel)和一些黑线的简单 UIView。

在此处输入图像描述

这正是您可以打印该 UIView 的方法...

将其渲染为 UIImage,然后打印...

- (IBAction)printB:(id)sender
    {
    // we want to print a normal view ... some UILabels, maybe a black line

    // in this technique, depressingly we CREATE AN IMAGE of the view...

    // step 1. make a UIImage, of the whole view.

    UIGraphicsBeginImageContextWithOptions(self.printMe.bounds.size, NO, 0.0);

    // [self.printMe.layer renderInContext:UIGraphicsGetCurrentContext()];
    // UIImage *asAnImage = UIGraphicsGetImageFromCurrentImageContext();
    // .... or, more futuristically.....
    [self.printMe drawViewHierarchyInRect:self.printMe.bounds
        afterScreenUpdates:NO];
    UIImage *snapshotImage = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    // step 2. choose grayscale, etc

    UIPrintInfo *info = [UIPrintInfo printInfo];
    info.orientation = UIPrintInfoOrientationPortrait;
    info.outputType = UIPrintInfoOutputGrayscale;

    // step 3, print that UIImage

    UIPrintInteractionController *pic =
       [UIPrintInteractionController sharedPrintController];
    pic.delegate = self;
    //pic.printingItem = asAnImage;
    pic.printingItem = snapshotImage;
    pic.printInfo = info;

    UIPrintInteractionCompletionHandler completionHandler =
    ^(UIPrintInteractionController *pic, BOOL completed, NSError *error)
        {
        if (error)
            NSLog(@"failed... %@ %ld", error.domain, (long)error.code);
        if (completed)
            NSLog(@"completed yes");
        else
            NSLog(@"completed no");
        };     

    [pic presentAnimated:YES completionHandler:completionHandler];
    }

但这会给你带来糟糕的结果。这是打印排版的一种荒谬方式。它应该作为附言或其他东西发送。

在 iPad 屏幕上...

在此处输入图像描述

打印时..

在此处输入图像描述

请注意,当然,如果您使用视网膜 ipad,它会好一些,但这不是重点。将文本信息,黑线,作为图像打印是荒谬的。

现在,你会认为你可以打印一个 UIView 像这样......

pic.printFormatter = [someUIView viewPrintFormatter];

但无论我尝试什么,我都无法让它发挥作用。

有人对此有任何意见吗?谢谢!

PS - 请注意,在 iOS 中,我们最近从使用 renderInContext 更改为使用快照调用。这对这里的问题完全没有影响,干杯。

4

1 回答 1

1

正如Apple Doc所述, UIView 的viewPrintFormatter属性是在 UIView 类别中定义的,但它仅适用于以下类型的实例:UITextViewMKMapViewUIWebView

所以你可以:

于 2017-05-04T10:33:31.327 回答