ios - limit UIImagePicker Camera View to a small part of screen -
i developing app uses uiimagepicker capture , save screen. following code launch camera.
uiimagepickercontroller *imgpickcontroller = [[uiimagepickercontroller alloc] init]; imgpickcontroller.sourcetype = uiimagepickercontrollersourcetypecamera; imgpickcontroller.delegate =self; imgpickcontroller.allowsediting=yes; [self presentmodalviewcontroller:imgpickcontroller animated:yes];
this launches camera in whole screen.
is there way show camera-view inside small subview on app-screen?? hope clear. thanks.
Comments
Post a Comment