Skip to content

Releases: 0thernet/BZGFormViewController

v2.4.0

26 Jun 14:34
Compare
Choose a tag to compare

v2.3.2

28 Apr 17:15
Compare
Choose a tag to compare
  • Adds BZGPhoneTextFieldCell

v2.3.1

28 Apr 03:05
Compare
Choose a tag to compare
v2.3.1

v2.3.0

23 Apr 21:10
Compare
Choose a tag to compare
v2.3.0

v2.2.0

08 Apr 14:18
Compare
Choose a tag to compare
v2.2.0

v2.1.0

08 Apr 14:18
Compare
Choose a tag to compare
  • Adds isValid to BZGFormViewController
    • Using this property to configure components (e.g. a submit button) is much easier.
  • Adds BZGFormCell abstract superclass
    • BZGTextFieldCell now inherits from BZGFormCell.
    • setFormCells: enforces that all form cells are of class BZGFormCell.

CocoaPods/Specs#9779

v2.0

19 Mar 19:31
Compare
Choose a tag to compare

This release contains breaking changes and is not backwards compatible.

BZGFormFieldCell -> BZGTextFieldCell

  • Removes voidEditingEventBlock and boolEditingEventBlock types
    • autocomplete with inscrutable block types is annoying.
  • Renaming:
    • showsCheckmark -> showsCheckmarkWhenValid

BZGFormInfoCell -> BZGInfoCell

BZGFormViewController

  • BZGFormViewController no longer inherits from UITableViewController. 💀
    • tableView is now a subview of the view controller's view
  • Removes shouldShowInfoCell
    • Use BZGValidationStateWarning when you want to show an info cell without marking the cell as invalid.
  • Renaming:
    • formFieldCells -> formCells
    • updateInfoCellBelowFormFieldCell -> updateInfoCellBelowFormCell
    • nextFormFieldCell -> nextFormCell
    • firstInvalidFormFieldCell -> firstInvalidFormCell

1.1.0

10 Mar 03:58
Compare
Choose a tag to compare

CocoaPods/Specs#9020

  • Adds showCheckmark and showValidationWhileEditing to BZGFormFieldCell