iphone sdk 中的相机问题
我想在我的标签栏应用程序中打开相机.. 我已打开相机,但无法拍照,因为我在该屏幕中没有找到相机符号,所以请告诉我如何在相机视图中显示相机按钮(用于拍摄)?我也在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
而不是
use
instead of