Skip to content

Voxer/BSImagePicker

 
 

Repository files navigation

BSImagePicker

CI Status Version License Platform Carthage compatible

alt text

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.

Usage

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

Swift
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")
    })

Customization

Requirements

iOS 8

Installation

Author

Joakim Gyllström, joakim@backslashed.se

License

BSImagePicker is available under the MIT license. See the LICENSE file for more info.

About

A multiple image picker for iOS

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 98.5%
  • Ruby 1.5%