I want to use photo picker view in customized form, such as showing a rectangle in screen to focus on specified area of the picture. However, UIImagePickerController can only offer a normal photo picker view. Is there any other class I can use to replace UIImagePickerController, or should I create a sub class of UIImagePickerController?
Asked
Active
Viewed 1.9k times
8
-
2You would need to create your custom image picker. It would not be a subclass of `UIImagePickerController`. You need to start from scratch. – rmaddy Mar 20 '13 at 04:36
-
This is best site for custom `UIImagePickerController `. http://www.cocoacontrols.com/search?utf8=%E2%9C%93&q=UIImagePickerController You can find and get custom `UIImagePickerController ` as you want. – iPatel Mar 20 '13 at 04:43
1 Answers
4
You can use ALAsset Library for designing your own ImagePicker. With the help of ALAsset library you can able to extract the photos and videos from the iOS album and use it in your own design.
A good example to start with this is ELCImagePickerController

Aravindhan
- 15,608
- 10
- 56
- 71
-
ELCImagePickerController is a great code example for a custom image picker. Thanks. – John Erck Dec 20 '13 at 16:20