Reputation: 892
How can I remove the zoom slider from the UIImagePickerController
? It appears when the user tries to zoom in.
Upvotes: 3
Views: 1727
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