Skip to content

Instantly share code, notes, and snippets.

@Adobels
Created October 8, 2021 12:53
Show Gist options
  • Save Adobels/72649a612f2bf2913c1f3933c0f49ac9 to your computer and use it in GitHub Desktop.
Save Adobels/72649a612f2bf2913c1f3933c0f49ac9 to your computer and use it in GitHub Desktop.
@IBSegueAction method signature
@IBSegueAction private func showPerson(coder: NSCoder, sender: Any?, segueIdentifier: String?)
working variants:
@IBSegueAction private func showPerson(coder: NSCoder)
@IBSegueAction private func showPerson(_ coder: NSCoder, sender: Any?, segueIdentifier: String?)
@IBSegueAction private func showPerson(_ coder: NSCoder)
@IBSegueAction private func showPerson(coder: NSCoder)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment