Skip to content

Releases: JaNd3r/CKTextField

CKTextField 0.3.1

29 Sep 08:49
Compare
Choose a tag to compare

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 CKTextFieldwithout a placeholder text. #23

CKTextField 0.3.0

01 Aug 19:23
Compare
Choose a tag to compare

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

05 Aug 08:23
Compare
Choose a tag to compare
  • Added IBInspectable support for better storyboard integration (#5).
  • Added pattern support as validation type (#4).
  • Contains a bugfix, where setting the delegate could end in an infinity loop (#6, #7).

CKTextField 0.1.2

06 Mar 12:18
Compare
Choose a tag to compare

Bugfix release. Includes issues #1, #2 and #3.

CKTextField 0.1.1

19 Sep 12:37
Compare
Choose a tag to compare
  • 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

14 Sep 13:55
Compare
Choose a tag to compare

This is the initial release of the CKTextField. Enjoy! :)