Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

dennisxiaoding/DXPhotoPicker

Open more actions menu

Repository files navigation

DXPhotoPickerController

logo

About

DXPhotoPickerController is a component that funtioned like imagepicker in WeChat. It's very similar to UIImagePickerController which makes its usage simple and concise.

DXPhotoPickerController is a swift version of DNImagePicker.

I don't make it as a pod because of the flexible UI requirements. Only supported the simple demo and you can customize your own style.

image

##Version The current version can support Swift 3. If you want the Swift 2.2 one, click here

Usage

DXPhotoPickerController is similar to UIImagePickerController in its usage.

Example

	let picker = DXPhotoPickerController()
    picker.photoPickerDelegate = self
    self.present(picker, animated: true, completion: nil)
    // MARK: DXPhototPickerControllerDelegate
    func photoPickerDidCancel(photoPicker: DXPhotoPickerController) {
        photoPicker.dismiss(animated: true, completion: nil)
    }

    func photoPickerController(photoPicker photosPicker: DXPhotoPickerController?,
                               sendImages: [PHAsset]?,
                               isFullImage: Bool) {
        photosPicker?.dismiss(animated: true, completion: nil)
        let vc = storyboard?.instantiateViewController(withIdentifier: "DXSelectedImageViewController") as! DXSelectedImageViewController
        vc.selectedImages = sendImages
        vc.isFullImage = isFullImage
        navigationController?.pushViewController(vc, animated: true)
    }


The call back delegte methods

	 func photoPickerController(photoPicker photosPicker: DXPhotoPickerController?,
                               sendImages: [PHAsset]?,
                               isFullImage: Bool)

param isFullImage suggested if the image you choose is the high quality image.

Requirements

DXPhotoPickerController is written in Swift and links against Photos.framework. It therefore requires iOS 8 or later.

##Tips Add Photo Library Usage Description key in Info.plist after iOS 10, or it will crash.

Author

我叫丁晓, Weibo. 😄

Inspired

mwaterfall/MWPhotoBrowser gave a me great help!

About

A imagePicker functioned like we chat. A swift version of DNImagePicker

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.