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)