Last active
September 12, 2023 11:00
-
-
Save DejanEnspyra/869e767a1f5e440894a58e0f5c004398 to your computer and use it in GitHub Desktop.
Access iOS Camera and Photo Library with Swift 3. http://theappspace.com/swift-access-ios-camera-photo-library/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// CameraHandler.swift | |
// theappspace.com | |
// | |
// Created by Dejan Atanasov on 26/06/2017. | |
// Copyright © 2017 Dejan Atanasov. All rights reserved. | |
// | |
import Foundation | |
import UIKit | |
class CameraHandler: NSObject{ | |
static let shared = CameraHandler() | |
fileprivate var currentVC: UIViewController! | |
//MARK: Internal Properties | |
var imagePickedBlock: ((UIImage) -> Void)? | |
func camera() | |
{ | |
if UIImagePickerController.isSourceTypeAvailable(.camera){ | |
let myPickerController = UIImagePickerController() | |
myPickerController.delegate = self; | |
myPickerController.sourceType = .camera | |
currentVC.present(myPickerController, animated: true, completion: nil) | |
} | |
} | |
func photoLibrary() | |
{ | |
if UIImagePickerController.isSourceTypeAvailable(.photoLibrary){ | |
let myPickerController = UIImagePickerController() | |
myPickerController.delegate = self; | |
myPickerController.sourceType = .photoLibrary | |
currentVC.present(myPickerController, animated: true, completion: nil) | |
} | |
} | |
func showActionSheet(vc: UIViewController) { | |
currentVC = vc | |
let actionSheet = UIAlertController(title: nil, message: nil, preferredStyle: .actionSheet) | |
actionSheet.addAction(UIAlertAction(title: "Camera", style: .default, handler: { (alert:UIAlertAction!) -> Void in | |
self.camera() | |
})) | |
actionSheet.addAction(UIAlertAction(title: "Gallery", style: .default, handler: { (alert:UIAlertAction!) -> Void in | |
self.photoLibrary() | |
})) | |
actionSheet.addAction(UIAlertAction(title: "Cancel", style: .cancel, handler: nil)) | |
vc.present(actionSheet, animated: true, completion: nil) | |
} | |
} | |
extension CameraHandler: UIImagePickerControllerDelegate, UINavigationControllerDelegate{ | |
func imagePickerControllerDidCancel(_ picker: UIImagePickerController) { | |
currentVC.dismiss(animated: true, completion: nil) | |
} | |
func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [String : Any]) { | |
if let image = info[UIImagePickerControllerOriginalImage] as? UIImage { | |
self.imagePickedBlock?(image) | |
}else{ | |
print("Something went wrong") | |
} | |
currentVC.dismiss(animated: true, completion: nil) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment