Reputation:
Question regarding an iPhone application we have developed which uses the live camera function.
Details:
Question:
Thanks!
Upvotes: 2
Views: 1502
Reputation: 3733
You might also check out ARKit. I haven't used it yet or had time to play with it. From looking at it, it seems like apple would not sanction it, but it seems to pick apart the UIImagePicker control to remove all the chrome around the view finder.
Upvotes: 1
Reputation: 857
If OS 3.1 is an option for end-user phones, take a look at the new 3.1 camera APIs. In summary, set the showsCameraControls property to NO, set the cameraOverlayview property to your own view, and use the takePicture method to hook up to your own control for taking the picture. You'll also need to implement imagePickerController:didFinishPickingMediaWithInfo to save the image after the picture is taken.
The goal, of course, is to eliminate the stock controls and use your own that you can control for placement.
UIImagePickerController Class Reference
has further information on the subject.
Upvotes: 5