ACKImagePicker lets users choose multiple photos from different albums in their media library with a native-like appearance.
ACKImagePicker is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "ACKImagePicker", "~> 0.4.0"
You can also use Carthage. Specify this repo in your Cartfile:
github "AckeeCZ/ACKImagePicker" ~> 0.4.0
Simply initalize ACKImagePicker
and present it:
let controller = ACKImagePicker()
present(controller, animated: true)
To receive selected images, you can set onImagesPicker
callback:
controller.onImagesPicked = { images in
showImagesInMyController()
// Dismiss `ACKImagePicker`
dismiss(animated: true)
}
You can also limit number of images that an user can select by setting:
controller.maximumNumberOfImages = 3
Ackee team
ACKImagePicker is available under the MIT license. See the LICENSE file for more info.