如何在 iOS11 中获取 UIDocumentMenuViewController 功能?
How to get UIDocumentMenuViewController functionality in iOS 11?
在 iOS 11 中 UIDocumentMenuViewController
被标记为已弃用。
推荐使用UIDocumentPickerViewController
,它以前存在并且只有UIDocumentMenuViewController
功能的一个子集(在以前的版本中它是由UIDocumentMenuViewController
调用的)。
我看不出有什么新东西被添加到它里面,所以它可以增加删除 UIDocumentMenuViewController
。
不知何故,我怀疑 iOS 11 删除了如此重要的功能而没有提供一些新的方法来实现它,但我现在看不到它,所以有人知道这件事吗?
在 iOS 10 和以前的版本中,UIDocumentMenuViewController
使用 Dropbox 打开,Google 驱动器...然后需要一个 Menu
您可以动态添加项目需要。
在 iOS 11 中,只有一个项目 Explore...
显示在菜单中,然后现在,您可以将 ActionSheet 与您的自定义项目和 UIDocumentPickerViewController
.
一起使用
在 iOS 11 中 UIDocumentMenuViewController
被标记为已弃用。
推荐使用UIDocumentPickerViewController
,它以前存在并且只有UIDocumentMenuViewController
功能的一个子集(在以前的版本中它是由UIDocumentMenuViewController
调用的)。
我看不出有什么新东西被添加到它里面,所以它可以增加删除 UIDocumentMenuViewController
。
不知何故,我怀疑 iOS 11 删除了如此重要的功能而没有提供一些新的方法来实现它,但我现在看不到它,所以有人知道这件事吗?
在 iOS 10 和以前的版本中,UIDocumentMenuViewController
使用 Dropbox 打开,Google 驱动器...然后需要一个 Menu
您可以动态添加项目需要。
在 iOS 11 中,只有一个项目 Explore...
显示在菜单中,然后现在,您可以将 ActionSheet 与您的自定义项目和 UIDocumentPickerViewController
.