gpt4 book ai didi

ios - AirPrint 显示两个后退 (<<) 图标

转载 作者:行者123 更新时间:2023-11-29 02:20:17 24 4
gpt4 key购买 nike

我愿意在 iOS 中使用 AirPrint 从我的应用程序中导出一些 pdf 文件。然而,当我呈现 UIPrintInteractionController 时,它显示两个后退图标 <<。我附上了图像和代码以获取我正在做的事情。我认为这些图标是我自己的导航栏和 UIPrintInteractionController 的另一个图标,我试图隐藏 barItems 但没有成功。这是代码:

UIPrintInteractionController *printController = [UIPrintInteractionController sharedPrintController];
printController.delegate = self;

NSMutableArray *printingItems = [NSMutableArray array];
if(exportCSV) [printingItems addObject:csvData];
if(exportPDF) [printingItems addObject:pdfData];

UIPrintInfo *printInfo = [UIPrintInfo printInfo];
printInfo.outputType = UIPrintInfoOutputGeneral;
printInfo.jobName = @"MyHealth Export";
printInfo.duplex = UIPrintInfoDuplexLongEdge;
printController.printInfo = printInfo;
printController.showsPageRange = YES;
printController.printingItems = printingItems;

dispatch_async(dispatch_get_main_queue(), ^{
[printController presentAnimated:YES completionHandler:^(UIPrintInteractionController *printInteractionController, BOOL completed, NSError *error) { //code}

图片: enter image description here

感谢任何帮助..提前致谢:)

最佳答案

您确定是两个按钮而不是一个吗?看起来您或其他人可能已将下方 Controller 的标题或其后退按钮标签设置为@"<"。通常它会显示较大的 < 符号,后跟下方 Controller 的标题或“返回”(如果标题太大)。据我所知,它似乎以某种方式设置为“<”。

是否有任何地方可以更改导航项的标题?也许在导航项的属性检查器中可以让您放入后退按钮标签?

关于ios - AirPrint 显示两个后退 (<<) 图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28231838/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com