Skip to content

Instantly share code, notes, and snippets.

@iosdevie
Created May 29, 2021 18:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iosdevie/85d479506ecd54ccaba3c5e851885fd8 to your computer and use it in GitHub Desktop.
Save iosdevie/85d479506ecd54ccaba3c5e851885fd8 to your computer and use it in GitHub Desktop.
@objc func onButtonClick(sender: UIButton){
let imagePicker = UIImagePickerController()
imagePicker.sourceType = .photoLibrary
imagePicker.delegate = self
present(imagePicker, animated: true, completion: nil)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment