Releases: bpoplauschi/BPForms
Releases · bpoplauschi/BPForms
Patch for 2.1.0
- Just moved the Xcode workspace around
Framework and static lib
- Added a Framework and a static library target
- Custom insets for headers and footers #25
Patch release for 2.0.0 (improved)
Patch release for 2.0.0 (improved)
- Created a
BPForms.hgeneric header including all core headers - 9348df3 - Fixed a button size issue - 6460300 0f2c599
- Fix bottom inset after keyboard disappears if there is a toolbar - #23
- Exposed ways to force the validation on a FormViewController:
forceValidationandupdateInfoCellBelowInputCell:- 18d9e80 - Info cell aligns to the center (useful on iPad devices) - c4200a3
Patch release for 2.0.0 (improved)
Patch release for 2.0.0
Fixed a bunch of issues:
- Fixed: jumping from one cell to the next repeatedly changes the button cells dimensions #10 #14
- Fixed: Resizing TableView Height when Keyboard Appears Ruins Keyboard Transparency in iOS 7 #12. Thanks to @fabb for the original implementation #13
- Fixed: info cell should not be selectable #15
- Changed keyboard notification from
didShowtowillShow
New architecture and easier customisation of cell dimensions
The 2.0.0 release brings in a new class architecture, a TextView based input, mechanisms for cell customisation and bug fixes:
- class architecture refactoring 87d7230
BPFormInfoCellno longer subclassesBPFormCell, butUITableViewCellBPFormCellProtocolcontains all the methods for a cell that is member of aBPFormViewControllertable. At this point, implemented byBPFormCellandBPFormInfoCellBPFormInputCellbecame an abstract class, with usable subclassesBPFormInputTextFieldClassandBPFormInputTextViewClass- renamed
BPFormFloatLabelInputCelltoBPFormFloatInputTextFieldCell(subclass ofBPFormInputTextFieldCell) - renamed
BPFormMultiLineFloatLabelInputCelltoBPFormFloatInputTextViewCell(subclass ofBPFormInputTextViewCell)
- cell dimensions customization: easy to achieve using
customCellHeight,spaceToNextCell,customContentHeight,customContentWidth - Moved validation icon outside the text input control (textfield, textview) c4f7bba
- Added keyboard mode to help with using the form view controller in a UIPopover with auto layout #2 thanks @snown
- fixed keyboard disappear table view animation 499177a 4c95725
- updated input cell validation, for optional cells, so that they aren't validated if empty 8a88078
- Renamed
BPTextFieldValidateBlockWithPatternAndMessagetoBPValidateBlockWithPatternAndMessage85eb9d3
Integration with JVFloatLabeledTextField
- Integration with JVFloatLabeledTextField via subspec - 00d45a7 6eee6bd 01676aa
- added text field regex validation convenience method BPTextFieldValidateBlockWithPatternAndMessage - #1 - thanks @andrei512
- corrected UIKit bad practice - 45d98a5
Patch for 1.0.0 - fixed UIButton missing
- UIButton missing if frame was not set - fixed by 7fc2af2
First release - basic implementation of forms
BPFormViewController+BPFormCellsubclasses (input, info and button)BPAppearancefor customisation