Created
March 19, 2017 21:23
-
-
Save bill350/952f71ecfef9e32b38db0175b0388df9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// 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