gpt4 book ai didi

ios - Swift - 拍照或选择现有的

转载 作者:行者123 更新时间:2023-11-28 10:57:48 25 4
gpt4 key购买 nike

每当我使用某个应用程序并要求提供照片时,就会弹出如下内容: enter image description here

你们中的任何人都对这里实际发生的事情有引用吗?是否有一些用于此的内置函数或开源库?我似乎无法在互联网上找到任何特定资源。

谢谢!

最佳答案

在您的屏幕截图上,您会看到 UIAlertController有两个 Action :

let actionSheet = UIAlertController(title: nil, message: nil, preferredStyle: .actionSheet)
let cameraAction = UIAlertAction(title: "Take Photo", style: .default, handler: nil)
let photoLibraryAction = UIAlertAction(title: "Choose Existing", style: .default handler: nil)

actionSheet.addAction(camerAction)
actionSheet.addAction(photoLibraryAction)

要访问照片库或使用相机拍摄新照片,您可能需要查看 UIImagePickerController .

关于ios - Swift - 拍照或选择现有的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42228457/

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