iphone sdk 中的相机问题

发布于 2024-11-06 06:27:37 字数 366 浏览 0 评论 0原文

我想在我的标签栏应用程序中打开相机.. 我已打开相机,但无法拍照,因为我在该屏幕中没有找到相机符号,所以请告诉我如何在相机视图中显示相机按钮(用于拍摄)?我也在我的 iPhone 上进行了测试。相机打开,但我找不到任何按钮来选择图像..我怎样才能得到如果? 谢谢.. 代码是

picker = [[UIImagePickerController alloc] init];

picker.delegate = self;

picker.sourceType = UIImagePickerControllerSourceTypeCamera;

[Delegate presentModalViewController:picker animated:YES];

i would like to open camera in my tab bar app..
i have open the camera but i could not taken the picture because i didnt find the camera symbol in that screen so please tell me how i can i show the camera button(for capture) in camera view? i am also tested it in my iPhone. camera opened but i could not find any button to pick the image.. how can i got if?
Thank You..
code is

picker = [[UIImagePickerController alloc] init];

picker.delegate = self;

picker.sourceType = UIImagePickerControllerSourceTypeCamera;

[Delegate presentModalViewController:picker animated:YES];

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

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

发布评论

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

评论(1

ゃ懵逼小萝莉 2024-11-13 06:27:37

使用

       [self presentModalViewController:picker animated:YES];

而不是

  [Delegate presentModalViewController:picker animated:YES];

use

       [self presentModalViewController:picker animated:YES];

instead of

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