gpt4 book ai didi

ios - 这是 iOS 中的 Controller

转载 作者:行者123 更新时间:2023-11-28 18:49:22 24 4
gpt4 key购买 nike

我在 safari 浏览一些网站。这是附件按钮。当我点击那个按钮时。它显示了这个 Controller 。 any1 可以告诉我 safari 提供的默认功能是什么吗?它在各种应用程序中也很像 slack。

它在一次操作中显示了 icloud/google drive/dropbox 所有这三者。

enter image description here

enter image description here

最佳答案

它是 UIDocumentPickController。查看苹果开发者documentation

let documentPicker: UIDocumentPickerViewController = UIDocumentPickerViewController(documentTypes: ["public.text"], in: UIDocumentPickerMode.import)
documentPicker.delegate = self
documentPicker.modalPresentationStyle = UIModalPresentationStyle.formSheet
self.present(documentPicker, animated: true, completion: nil)

委托(delegate)

    // MARK: - UIDocumentPickerDelegate Methods

func documentPicker(_ controller: UIDocumentPickerViewController, didPickDocumentAt url: URL) {
if controller.documentPickerMode == UIDocumentPickerMode.import {
// This is what it should be
// self.newNoteBody.text = String(contentsOfFile: url.path!)
}
}

添加代码后,您还应该检查 this 帖子,否则您会遇到异常。您应该转到功能并打开 iCloud 功能。也在那里添加 icloud 容器

UIDocumentMenuControllerUIDocumentPickerViewController 相同。但它已被弃用。在这里查看开发者 documentation

关于ios - 这是 iOS 中的 Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44970179/

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