Skip to content

Instantly share code, notes, and snippets.

@Arnav-arw
Created July 5, 2024 05:57
Show Gist options
  • Save Arnav-arw/c6c8515438562fdcd84b169daf2505c0 to your computer and use it in GitHub Desktop.
Save Arnav-arw/c6c8515438562fdcd84b169daf2505c0 to your computer and use it in GitHub Desktop.
import Foundation
import Social
class ShareViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
if let itemProviders = (extensionContext!.inputItems.first as? NSExtensionItem)?.attachments {
// Your shared item
}
}
// Dismiss ShareSheet
func close() {
self.extensionContext?.completeRequest(returningItems: [], completionHandler: nil)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment