假设您有一个只有文本(即 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 更改为使用快照调用。这对这里的问题完全没有影响,干杯。