iPad 2 摄像头编程示例

发布于 2024-10-30 13:52:38 字数 82 浏览 0 评论 0原文

谁能给我提供一个在 iPad 2 上使用相机的程序示例吗?最好是在 XCode 模拟器中运行的示例。

非常感谢

克日斯

Can anyone point me to an example of a program using camera on iPad 2? Preferentialy an example working in the XCode simulator.

Thanks a lot

Krzys

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

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

发布评论

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

评论(1

橘香 2024-11-06 13:52:38

您需要使用 UIImagePickerController,但相机模式在模拟器中不起作用。对于模拟器,您可以使用库模式,然后当您准备好在设备上进行测试时切换到相机模式。

UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.delegate = pickerDelegate
picker.sourceType = UIImagePickerControllerSourceTypeCamera;

然后使用委托方法访问图像:

- (void)imagePickerController:(UIImagePickerController *)picker
                       didFinishPickingMediaWithInfo:(NSDictionary *)info

You'll need to use the UIImagePickerController, but the camera mode won't work in the Simulator. For the simulator you can use the Library Mode and then just swap to camera mode when your ready to test on the device.

UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.delegate = pickerDelegate
picker.sourceType = UIImagePickerControllerSourceTypeCamera;

and then use the delegate method to access the image:

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