我想知道是否有人愿意分享如何将相机功能放入iOS应用程序,或者是否有人知道一个简单的教程。没有任何按钮,只是在屏幕上显示相机看到的内容。我尝试过Apple的文档,但它太复杂了我的需求。
非常感谢你!
编辑:任何简单的教程都可以。就像我说的那样,我不需要任何其他东西,除了它以显示相机所看到的内容。
答案 0 :(得分:15)
我不知道一个简单的教程,但添加一个显示相机看到的内容的视图非常容易。
<强>首先强>
将UIView添加到界面构建器中,该构建器将显示摄像机。
<强>第二强>
将AVFoundation框架添加到项目中,并将其导入添加到ViewController .m文件中。
#import <AVFoundation/AVFoundation.h>
<强>第三强>
将这2个变量添加到接口变量声明
AVCaptureVideoPreviewLayer *_previewLayer;
AVCaptureSession *_captureSession;
<强>第四:强>
将此代码添加到viewDidLoad。 (其作用的解释被评论)
//-- Setup Capture Session.
_captureSession = [[AVCaptureSession alloc] init];
//-- Creata a video device and input from that Device. Add the input to the capture session.
AVCaptureDevice * videoDevice = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo];
if(videoDevice == nil)
assert(0);
//-- Add the device to the session.
NSError *error;
AVCaptureDeviceInput *input = [AVCaptureDeviceInput deviceInputWithDevice:videoDevice
error:&error];
if(error)
assert(0);
[_captureSession addInput:input];
//-- Configure the preview layer
_previewLayer = [[AVCaptureVideoPreviewLayer alloc] initWithSession:_captureSession];
_previewLayer.videoGravity = AVLayerVideoGravityResizeAspectFill;
[_previewLayer setFrame:CGRectMake(0, 0,
self.cameraPreviewView.frame.size.width,
self.cameraPreviewView.frame.size.height)];
//-- Add the layer to the view that should display the camera input
[self.cameraPreviewView.layer addSublayer:_previewLayer];
//-- Start the camera
[_captureSession startRunning];
备注:强>
断言会使程序退出相机不可用的地方。
这只显示相机看到的“预览”,如果您想操纵输入,或拍照或录制视频,您需要配置其他内容,如SessionPreset并添加相应的捕获代表。但在这种情况下,您应该遵循适当的教程或阅读文档。