gpt4 book ai didi

swift - iOS 11 中 UIDocumentMenuViewController 的替代品

转载 作者:搜寻专家 更新时间:2023-10-31 21:46:21 24 4
gpt4 key购买 nike

是否可以在 iOS 11 中实现 UIDocumentMenuViewController(在 iOS 11 中已弃用)的外观?我在 iOS 11 中找到的最接近的是 UIDocumentPickerViewController,但这不允许我显示文档提供者的菜单,而是以模式显示最近使用的文档提供者的全屏。

如果没有与 UIDocumentMenuViewController 相同的替代方案,是否至少有一种方法可以强制 UIDocumentPickerViewController 直接转到“位置”而不是显示最近使用的文档提供程序?

期望的结果: enter image description here

最佳答案

您可以将 UIAlertController 与 UIAlertControllerStyle.ActionSheet 结合使用。我有 Xamarin.ios 代码。

var okCancelAlertController = UIAlertController.Create("", "Choose", 
UIAlertControllerStyle.ActionSheet);
//Add Actions
okCancelAlertController.AddAction(UIAlertAction.Create("iCloud", UIAlertActionStyle.Default, (s) => { }));
okCancelAlertController.AddAction(UIAlertAction.Create("Photos", UIAlertActionStyle.Default, (s) => { }));
okCancelAlertController.AddAction(UIAlertAction.Create("Cancel", UIAlertActionStyle.Cancel, (s) => { }));
UIApplication.SharedApplication.KeyWindow.RootViewController.PresentViewController(okCancelAlertController, true, null);

关于swift - iOS 11 中 UIDocumentMenuViewController 的替代品,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48190526/

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