UIActionSheet...如何实现UIImagePicker?

发布于 2025-01-01 04:18:26 字数 79 浏览 1 评论 0原文

我是 iOS 开发新手...我想在此视图上添加 3 个按钮:取消、从库中选择和从相机拍摄。 我已经知道 UIImagePicker 方法。 谢谢

I'm new to iOS developement... I want to add 3 buttons on this view: cancel, choose from library and take from camera.
I already know the UIImagePicker method.
Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

↙厌世 2025-01-08 04:18:26

Ciao Davide,阅读 UIImagePickerController 类参考应该很有用:

您可以自定义图像选择器控制器来自行管理用户交互。为此,请提供一个覆盖视图,其中包含
您想要显示的控件,并使用中描述的方法
“捕捉静态图像或电影。”您可以显示您的自定义
覆盖视图是默认控件的补充或替代。
UIImagePickerController 类的自定义叠加视图是
在 iOS 3.1 及更高版本中通过cameraOverlayView 可用
财产。有关代码示例,请参阅 PhotoPicker 示例代码
项目。

这里有 UIImagePickerController 类参考:
http://developer.apple.com /library/ios/#documentation/uikit/reference/UIImagePickerController_Class/UIImagePickerController/UIImagePickerController.html

这里有PhotoPicker示例代码:
http://developer.apple.com/library/ios/#samplecode/PhotoPicker/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010196

Ciao Davide, reading UIImagePickerController Class Reference should be useful:

You can customize an image picker controller to manage user interactions yourself. To do this, provide an overlay view containing
the controls you want to display, and use the methods described in
“Capturing Still Images or Movies.” You can display your custom
overlay view in addition to, or instead of, the default controls.
Custom overlay views for the UIImagePickerController class are
available in iOS 3.1 and later by way of the cameraOverlayView
property. For a code example, see the PhotoPicker sample code
project.

Here there is UIImagePickerController Class Reference:
http://developer.apple.com/library/ios/#documentation/uikit/reference/UIImagePickerController_Class/UIImagePickerController/UIImagePickerController.html

And here there is PhotoPicker sample code:
http://developer.apple.com/library/ios/#samplecode/PhotoPicker/Introduction/Intro.html#//apple_ref/doc/uid/DTS40010196

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文