I am just wanting one screeen:
When using the UIImagePickerController
it uses two screens.
But I don't want this one:
Is this possible?
I am just wanting one screeen:
When using the UIImagePickerController
it uses two screens.
But I don't want this one:
Is this possible?
@Fahri
is rightAVFoundation
is more flexible but if you want to stick withUIImagePickerController
what you could do is turn off the camera control by settingshowsCameraControls
property toNO
, then present your own view and custom methods.Change your code to:
takeVideo
shootVideo
cancelVideo
screenshot
DOWNLOAD DEMO PROJECT
If you have already checked the documentation of
UIImagePickerController
before posting your question, then you can useAVFoundation
library to build your own camera controller, with any controls and screens you want. Good Luck!