Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ulaganathan-PalaniVelayutham/a125304aeca118bf8aac09218d477e23 to your computer and use it in GitHub Desktop.
Save ulaganathan-PalaniVelayutham/a125304aeca118bf8aac09218d477e23 to your computer and use it in GitHub Desktop.
public func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [UIImagePickerController.InfoKey : Any]) {
guard let url = info[.mediaURL] as? URL else {
return
}
self.dismiss(animated: true) {
[weak self] in
print(url)
// you can pass on this url of the video to do other stuff
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment