How to access iPhone API without camera interface?

How can I take a photo in my iPhone app without going through the camera interface?

I read about CameraController. Is this something I should look into, or is there an easier way to just click the picture with the code?

+2


source to share


1 answer


You cannot access the camera without the iphone API, however what they allowed is to provide you with a custom view to be used on top of the camera interface, then you need to set the cameraOverlayView property for the UIImagePIckerController, here is the link as the solution posted in comments indicates that you can access the camera, but through a private framework that could hurt your chances of being approved in the Appstore



+4


source







All Articles