Releases: JaNd3r/CKTextField
Releases · JaNd3r/CKTextField
CKTextField 0.3.1
This is a maintenance release that contains the following fixes / changes.
- Text centering did not work on iOS 10. In fact the whole cursor centering became obsolete and has been removed. #20
- The accept button was not displayed on iOS 10 when using IB w/ auto-layout. #21
- Validation and auto-completion did not work if you wanted to use the
CKTextField
without a placeholder text. #23
CKTextField 0.3.0
This release should be backward compatible to 0.2.0.
It contains some bug fixes (#10, #12) and a new in-place autocomplete feature (#11).
Activating the in-place autocompletion is very easy: just pass in an NSArray
of NSString
values to the autocompleteValues
property of the CKTextField
. Please note the following limitation:
- Autocompletion will only work with left text alignment (because we need a fix position to display the autocomplete suggestion)
- Autocompletion will give suggestions in the order you provide them in the array (if more than one value is matching)
CKTextField 0.2.0
CKTextField 0.1.2
CKTextField 0.1.1
- Added input validation (currently supports string min and max length constraints as well as integer min and max value constraints).
- Added animations to be used for visualizing validation results (shake the text field, show an in-place accept button).
- Fixed cursor placement.
CKTextField 0.1.0 Initial Release
This is the initial release of the CKTextField. Enjoy! :)