Я пытаюсь добавить две NSAttributedStrings вместе. Я хочу, чтобы он печатался так, чтобы заголовок имел другой размер шрифта и шрифт, чем тело печати. Вот код, который я использую.AirPrint с NSAttributedString
-(IBAction)print:(id)sender{
UIFont *font = [UIFont fontWithName:@"Avenir Next Condensed" size:16.0];
NSDictionary *attrsDictionary = [NSDictionary dictionaryWithObject:font
forKey:NSFontAttributeName];
NSAttributedString *title = [[NSAttributedString alloc] initWithString:@"this is the title" attributes:attrsDictionary];
UIFont *font2 = [UIFont systemFontOfSize:14.0];
NSDictionary *attrsDictionary2 = [NSDictionary dictionaryWithObject:font2 forKey:NSFontAttributeName];
NSAttributedString *body = [[NSAttributedString alloc] initWithString:@"this is the body of the print" attributes:attrsDictionary2];
NSMutableString *printBody = [NSMutableString stringWithFormat:[NSString stringWithFormat:@"%@ \n"
@"%@ \n",title,body]];
UIPrintInteractionController *pic = [UIPrintInteractionController sharedPrintController];
pic.delegate = self;
UIPrintInfo *printInfo = [UIPrintInfo printInfo];
printInfo.outputType = UIPrintInfoOutputGeneral;
printInfo.jobName = @"PrintJob";
pic.printInfo = printInfo;
UISimpleTextPrintFormatter *textFormatter = [[UISimpleTextPrintFormatter alloc] initWithText:printBody];
textFormatter.startPage = 0;
textFormatter.contentInsets = UIEdgeInsetsMake(72.0, 72.0, 72.0, 72.0);
textFormatter.maximumContentWidth = 6 * 72.0;
pic.printFormatter = textFormatter;
pic.showsPageRange = YES;
UIPrinter *SavedPrinterUserDefaults = [[NSUserDefaults standardUserDefaults]
objectForKey:@"SavedPrinter"];
[pic printToPrinter:SavedPrinterUserDefaults
completionHandler:^(UIPrintInteractionController *printInteractionController, BOOL completed, NSError *error) {
if (completed && !error)
NSLog(@"it printed!");
}];
}
Когда я печатаю это, принтер печатает сообщение, которое выглядит так, и оно просто говорит все данные шрифта.
This is a test title{
NSFont = <font data>
}
this is the body of the print
Если кто-нибудь может помочь, это было бы здорово!
Почему бы вам не попробовать и распечатать его в формате HTML? –