• Stars
    star
    180
  • Rank 213,097 (Top 5 %)
  • Language
    Objective-C
  • License
    MIT License
  • Created over 9 years ago
  • Updated about 9 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A single line textfield implementation with Float Label Animation

SingleLineInput

[CI Status](https://travis-ci.org/Diogo Maximo/SingleLineInput) Version License Platform

Demo

alt tag

Usage

To run the example project, clone the repo, and run pod install from the Example directory first.

Installation

1- SingleLineInput is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "SingleLineInput"

2- Run

pod update

3- Change your UITextField to SingleLineInput

alt tag

4- Change SingleLineInput Properties (Optional)

_myInput.lineDisabledColor = [UIColor cyanColor];
_myInput.lineNormalColor = [UIColor grayColor];
_myInput.lineSelectedColor = [UIColor blueColor];
_myInput.inputTextColor = [UIColor redColor];
_myInput.inputPlaceHolderColor = [UIColor greenColor];
#OR use UIAppearance in your AppDelegate for change all inputs properties
[[SingleLineTextField appearance] setLineDisabledColor:[UIColor cyanColor]];
[[SingleLineTextField appearance] setLineNormalColor:[UIColor grayColor]];
[[SingleLineTextField appearance] setLineSelectedColor:[UIColor blueColor]];
[[SingleLineTextField appearance] setInputPlaceHolderColor:[UIColor greenColor]];
[[SingleLineTextField appearance] setInputFont:[UIFont boldSystemFontOfSize:18]];
[[SingleLineTextField appearance] setPlaceHolderFont:[UIFont boldSystemFontOfSize:16]];

Author

Diogo Maximo, [email protected]

License

SingleLineInput is available under the MIT license. See the LICENSE file for more info.