Mihai Popa
Mihai Popa

Reputation: 892

Remove `UIImagePickerController` zoom slider

How can I remove the zoom slider from the UIImagePickerController? It appears when the user tries to zoom in.

Upvotes: 3

Views: 1727

Answers (1)

pierre23
pierre23

Reputation: 3936

Do you still want to use the zoom ? Because you can set to NO the user interaction of of the UIImagePickerController's view. The user wont be able to zoom and so the zoom in wont show.

self.imagePicker.view.userInteractionEnabled = NO;

Upvotes: 1

Related Questions