Coder Social home page Coder Social logo

cicroppicker's Introduction

Installation

Cocoapods

pod 'CICropPicker'

Usage

First import the Pod

import CICropPicker

Then import the module Photos to ask for permissions

import Photos

Then in your info.plist you need to specify these properties which will be shown alongside the alert requesting access

  • NSPhotoLibraryUsageDescription - for the camera roll
  • NSCameraUsageDescription - for the camera

If you don't specify these properties, your app will crash upon requesting access.

Showing the camera roll

You need to ask permission to access the Camera Roll

PHPhotoLibrary.requestAuthorization({ (status) in
                //Response comes in a background thread, we need to go to the main thread
                DispatchQueue.main.async {
                    sheet.dismiss(animated: true, completion: nil)
                    switch status {
                    case .authorized:
                        let imagePicker = CICropPicker()
                        imagePicker.presentGalleryPicker(from: self)
                        break
                    default:
                        //handle access denied to camera roll
                        break
                    }
                    
                    
                }
})

Showing the camera

You need to ask permission to access the Camera

AVCaptureDevice.requestAccess(forMediaType: AVMediaTypeVideo, completionHandler: { (granted) in
                //Response comes in a background thread, we need to go to the main thread
                DispatchQueue.main.async {
                    sheet.dismiss(animated: true, completion: nil)
                    
                    if !granted {
                        //handle access denied to camera roll
                        return
                    }
                    let imagePicker = CICropPicker()
                    imagePicker.presentCameraPicker(from: self)
                }
})

Implement the delegate CICropPickerDelegate

  • imagePicker(_ imagePicker: UIImagePickerController!, pickedImage image: UIImage!) to handle image picked
  • imagePickerDidCancel(_ imagePicker: UIImagePickerController!) to handle picker cancellation

Credits

cicroppicker's People

Contributors

giannicarlo avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

Forkers

hirobreak

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.