如何通过 Objective C 使用 iPhone 中的默认视频应用程序
如何通过 Objective C 使用 iPhone 中的默认视频应用程序。 我想在我的应用程序中使用 iPhone 的默认视频应用程序,因为我之前已经使用过默认摄像头,但面临视频问题。
how to use default video application in iphone through objective c.
I want to used default video application of iphone in my application as I have already used default camera before but facing issues for video.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
假设您指的是媒体层< /a> 框架。
Assume you're referring to the media layer frameworks.
在摄像机上
To on Video camera using code
将 MobileCoreServices 框架添加到您的项目中
将
#import
添加到您将在其中引用选取器的头文件中。或者,您可以将导入添加到预编译头文件 (.pch),以便 UTCoreTypes 常量在整个项目中可用。
现在,在调用
UIImagePickerController
之前,只需将 mediaTypes 属性设置为电影类型kUTTypeMovie
即可。或者,如果您只想显示照片,则可以使用kUTTypeImage
:请记住,您应该在设置 sourceType 之前检查设备是否支持视频录制,因为将其设置为设备上的电影类型不支持视频录制会造成各种破坏。您可以通过查看可用的源类型来做到这一点:
Add the MobileCoreServices framework to your project
Add
#import <MobileCoreServices/UTCoreTypes.h>
to the header file where you will reference the picker.Alternately, you can add the import to your precompiled header file (.pch) so the UTCoreTypes constants are available throughout the project.
Now, before calling the
UIImagePickerController
, just set the mediaTypes property to the movie type,kUTTypeMovie
. Or, if you wanted to only display photos you would usekUTTypeImage
:Keep in mind that you should check if the device supports video recording before setting the sourceType, as setting it to a movie type on a device that does not support video recording will cause all sorts of havoc. You do that by looking at the available source types: