Skip to content

Instantly share code, notes, and snippets.

@FabP93
Created April 12, 2020 17:14
Show Gist options
  • Save FabP93/4e5efc65d0d02b9662791a38cae41505 to your computer and use it in GitHub Desktop.
Save FabP93/4e5efc65d0d02b9662791a38cae41505 to your computer and use it in GitHub Desktop.
ShareExtension - ShareViewController part 1
import UIKit
import MobileCoreServices
@objc(ShareExtensionViewController)
class ShareViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
self.handleSharedFile()
}
private func handleSharedFile() {
...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment