Skip to content

Instantly share code, notes, and snippets.

@scottfister
Last active April 25, 2017 16:02
Show Gist options
  • Save scottfister/ee35cb03948961ac25291ac34a1b92e3 to your computer and use it in GitHub Desktop.
Save scottfister/ee35cb03948961ac25291ac34a1b92e3 to your computer and use it in GitHub Desktop.
override func configurationItems() -> [Any]! {
if let deck = SLComposeSheetConfigurationItem() {
deck.title = "Selected Deck"
deck.value = "Deck Title"
deck.tapHandler = {
// on tap
}
return [deck]
}
return nil
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment