Skip to content

Instantly share code, notes, and snippets.

@bill350
Created March 22, 2017 18:18
Show Gist options
  • Save bill350/8374f9de6ab25c55ac06383ebb49d4a8 to your computer and use it in GitHub Desktop.
Save bill350/8374f9de6ab25c55ac06383ebb49d4a8 to your computer and use it in GitHub Desktop.
FormItem base class
class FormItem {
var value: String?
var placeholder = ""
var indexPath: IndexPath?
var valueCompletion: ((String?) -> Void)?
var uiProperties = FormItemUIProperties()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment