Front camera of iphone 4.0
I am new 开发者_JAVA百科in iphone application development.Please tell me how i check through our application front camera are open or not,i have no iphone with os 4.0.
is any idea to check this.
Thanks
The answer is in the XCode documentation. Search for "Front Camera" and you will find everything you need.
Now that the WWDC 2010 videos are available for free, I recommend watching Session 421 - Incorporating the Camera and Photo Library in your App and Session 409 - Using the Camera with AV Foundation. I believe both of them cover this at some point.
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 UIImagePickerController:
+ (BOOL)isCameraDeviceAvailable:(UIImagePickerControllerCameraDevice)cameraDevice
This is a class method and UIImagePickerControllerCameraDevice can take two values:
- UIImagePickerControllerCameraDeviceRear
UIImagePickerControllerCameraDeviceFront Example code:
if( [UIImagePickerController isCameraDeviceAvailable: UIImagePickerControllerCameraDeviceFront ]) { // do something }
Note that this is available for iOS 4.0 and later.
Also I am not sure if there is any API's to start the front-facing camera up front. The camera always seems to start in the same mode that the user left it the last time it was used. Maybe by design Apple did not expose any API's to change this. Maybe Apple wanted the users to make a call on this.
Nevertheless you can atleast detect the availability of Fron Camera & provide your feature.
Inside the method where you call the picker for the first time:
picker.cameraDevice=UIImagePickerControllerCameraDeviceFront;
Hope this answers your question.
精彩评论