A mix between the native iOS 8 gallery and facebooks image picker. It is intended as a replacement for UIImagePickerController for both selecting and taking photos.
Put stuff into info.plist TODO: ADD WHAT
// Make sure you ask for permission first!
PHPhotoLibrary.requestAuthorization { (status) in
}
To use it in you own project
let vc = ImagePicker()
presentImagePicker(vc,
onSelect: { (photo) in
print("Select")
}, onDeselect: { (photo) in
print("deselect")
}, onCancel: { (photos) in
print("cancel")
}, onFinish: { (photos) in
print("finish")
})
iOS 8
Joakim Gyllström, joakim@backslashed.se
BSImagePicker is available under the MIT license. See the LICENSE file for more info.