Hey I was wondering how I can access the front facing camera. Maybe there's some guide for it? But I don't want all buttons etc. I just want to access the from facing camera, I don't ant the button to take a photo or anything like that.
|
|
|
You can access the front facing camera like:
Check out the UIImagePickerController Class Reference |
|||
|
|
|
Just set the |
|||
|
|
|
You should initiate an AVCaptureSession and specify which AVCaptureDevice to use ( AVCaptureDevicePositionFront in your case). Start looking for the AVCaptureSession documentation and you should have a better understanding of what to do. |
|||
|
|
First thing you need to do is to detect if your device has got front-facing camera. For that you need to iterate through the video devices. Try this method of
This is a class method and UIImagePickerControllerCameraDevice can take two values:
Example code:
|
||||
|
|
Well, what "Khushbu Shah" said is right. however actually the isCameraDeviceAvailable is available only ios 4 and above. Just to ensure that you opened the front camera only if it is there, the right code block to be used is as follows.
|
|||
|
|