Skip to content

Instantly share code, notes, and snippets.

@bill350
Created March 19, 2017 21:23
Show Gist options
  • Save bill350/952f71ecfef9e32b38db0175b0388df9 to your computer and use it in GitHub Desktop.
Save bill350/952f71ecfef9e32b38db0175b0388df9 to your computer and use it in GitHub Desktop.
/// Conform the view receiver to be updated with a form item
protocol FormUpdatable {
func update(with formItem: FormItem)
}
/// Conform receiver to have a form item property
protocol FormConformity {
var formItem: FormItem? {get set}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment