- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
是否可以在 iOS 11 中实现 UIDocumentMenuViewController(在 iOS 11 中已弃用)的外观?我在 iOS 11 中找到的最接近的是 UIDocumentPickerViewController,但这不允许我显示文档提供者的菜单,而是以模式显示最近使用的文档提供者的全屏。
如果没有与 UIDocumentMenuViewController 相同的替代方案,是否至少有一种方法可以强制 UIDocumentPickerViewController 直接转到“位置”而不是显示最近使用的文档提供程序?
最佳答案
您可以将 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/
所以我正在测试 Apple 的新 Document Provider 扩展。我正在尝试打开一个 UIDocumentMenuViewController,并且该部分正在工作。但是,当我尝试单击它呈现的
我正在尝试为 UIDocumentMenuViewController 添加自定义图标,但唯一出现的是蓝色方 block 。我也尝试过使用不同的文件。 @IBAction func importAct
我在导入 iCloud 文件时遇到问题选择导入位置后,我得到的选项是空的(iCloud、谷歌驱动器、Dropbox 等)我在 iCloud 驱动器上有数据,权利是正确的 那么这段代码有什么问题或者设置
我的应用程序中有以下代码,当我点击“更多”按钮时,保管箱选项显示并迅速消失,不允许启用。 UIDocumentMenuViewController *picker = [[UIDocumentMenu
我在 this 中看到教程和 Apple docs ,这一堆代码应该可以工作。 let d = UIDocumentMenuViewController(documentTypes: [kUTType
我有一个模态呈现 VC“B”的 VC“A”。 B 呈现一个 UIDocumentMenuViewControllerUIDocumentMenuDelegate 协议(protocol)在 B 中实现
我已经成功实现了一项功能,让用户可以通过 UIDocumentMenuViewController 和 UIDocumentPickerViewController 选择一个文件到我的应用程序。 但是
我们开发了聊天应用程序,在该应用程序中有一个文件共享功能,如 whatsapp,它在 iOS9.x 中都可以正常工作,但是当我在 iOS10 中测试它时,google drive 选项立即消失。 这就
是否可以在 iOS 11 中实现 UIDocumentMenuViewController(在 iOS 11 中已弃用)的外观?我在 iOS 11 中找到的最接近的是 UIDocumentPicker
呈现一个 UIDocumentMenuViewController 以便能够将文件加载到应用程序中。在 iPhone 上可以,但在 iPad 上不行。使用iOS9。知道哪里出了问题吗? dmvc =
在 iOS 11 中,UIDocumentMenuViewController 被标记为已弃用。 推荐使用UIDocumentPickerViewController,它之前就存在,只有UIDocum
在我的 iOS 应用程序中,我打开一个 UIDocumentMenuViewController。当我使用 UIDocumentPickerModeImport 模式调用它时,一切正常(我的所有 iC
我尝试使用 UIDocumentMenuViewController 从 Dropbox/G-Drive/iCloud 加载一些文件。我试过了, UIDocumentMenuViewControlle
我在从 iPad 上的条形按钮项目中显示 UIDocumentMenuViewController 时遇到一些问题。我确实得到了正确的初始行为,并且根据需要从 barButtonItem 调用了菜单,
我是一名优秀的程序员,十分优秀!