Skip to content

A photo picker that select photos from system albums

License

Notifications You must be signed in to change notification settings

darkdong/PhotoPicker

Repository files navigation

PhotoPicker

A photo picker that select photos from system albums

Requirements

iOS 8.0, Swift 3.1

Installation

Carthage

  1. Add github "darkdong/PhotoPicker" to your Cartfile
  2. Run carthage update --platform ios
  3. Add the framework to your project manually.
  4. import PhotoPicker in Swift file or import <PhotoPicker/PhotoPicker.h> in Objective-C file

Manual

Download and add sources to your project

Usage

Basic Usage

let picker = PhotoPickerNavigationController.nc
present(picker, animated: true, completion: nil)

Config Picker

let picker = PhotoPickerNavigationController.nc
picker.config.rootTitle = "Root Title"
picker.config.mediaType = .image
present(picker, animated: true, completion: nil)

Picker Delegation

class ViewController: UIViewController {
    func showPicker() {        
        let picker = PhotoPickerNavigationController.nc 
        picker.pickerDelegate = self
        present(picker, animated: true, completion: nil)
    }
}

extension ViewController: PhotoPickerDelegate {
    func picker(_ picker: PhotoPickerNavigationController, didSelectAssets assets: [PHAsset]) {
        //do what you want
        //...
        
        //dismiss picker
        picker.dismiss(animated: true, completion: nil)
    }
    
    func picker(_ picker: PhotoPickerNavigationController, shouldSelectAsset: PHAsset, selectedAssets: [PHAsset]) -> Bool {
        //limit number of selections
        if selectedAssets.count >= 2 {
            return false
        }
        return true
    }
}

License

PhotoPicker is released under the MIT license. See LICENSE for details.