当我尝试在目标 c 代码中加载打印机时,打印机视图会超出屏幕。有人可以调查一下吗?
我尝试过使用 UIPrintInteractionController 的委托方法,但显示打印机控制器会超出屏幕。
此代码在 ios 12 中正常工作我想要在 ios 13 中使用相同的打印机屏幕
UIPrintInteractionController *printController = [UIPrintInteractionController sharedPrintController];
[printController presentFromRect:self.actionsButton.frame inView:self.view animated:NO
completionHandler:^(UIPrintInteractionController
*printInteractionController, BOOL completed, NSError *error) {
if (completed) {
[self.actionsPopoverController dismissPopoverAnimated:YES];
self.actionsPopoverController = nil;
}
}];
屏幕下方短