iOS 4 在自己的代码中使用 AVCam 演示

发布于 2024-10-27 15:15:43 字数 123 浏览 0 评论 0原文

我是 iO 开发新手,想知道是否有人已经将 AVCam 演示集成到他们自己的项目中? 我想将它与我当前的项目集成,并在用户点击特定按钮时弹出 AVCamView。我该怎么做? 任何代码片段将不胜感激!

问候, 拉尔斯

I'm new to iOs development and wondered if anybody has taken the AVCam demo and integrated into their own project?
I would like to integrate it with my current project and pop up the AVCamView when the user hits a particular button. How do I do that?
Any code snippets would be very appreciated!!!

Regards,
Lars

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

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

发布评论

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

评论(1

数理化全能战士 2024-11-03 15:15:43
  1. 将文件复制到您的项目中(不包括 appDelegate 文件)

  2. AVCamDemoViewController *camViewController = [[AVCamViewController alloc] init];
    [self.navigationController PushViewController:cameViewController动画:是]

我自己还没有尝试过,但这应该可行。确保 #import 文件。

  1. Copy the files into your project (exclude the appDelegate file)

  2. AVCamDemoViewController *camViewController = [[AVCamViewController alloc] init];
    [self.navigationController pushViewController:cameViewController animated:YES]

I haven't tried it myself, but that should work. Make sure you #import the files.

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