NDEmailTextField

Autocomplete email text field for iOS.


Keywords
cocoapods, ios, objective-c, ui, ui-components, ux
License
MIT
Install
pod try NDEmailTextField

Documentation

NDEmailTextField

CocoaPods

  1. Autocomplete email text field for iOS.
  2. Subclass of UITextField.
  3. SUPER EASY to use.
  4. Customizable.

Screenshots

Basic demo animated GIF

We are also using NDEmailTextField!

Noondate demo

Installation

Use Cocoapods

pod 'NDEmailTextField'

Usage

  • Import NDEmailTextField.

    #import <NDEmailTextField/NDEmailTextField.h>
  • Just initialize NDEmailTextField and add to your view.

    NDEmailTextField *textField = [[NDEmailTextField alloc] init];
    [self.view addSubview:textField];
  • Set the domain list (optional)

    textField.domains = @[@"mozzet.com", @"yourdomain.com"];
  • Set the domain text color (optional)

    textField.domainTextColor = [UIColor yourOwnColor];

To do

  • Interface builder support.
  • Attributed domain text.

Author

NDEmailTextField is written by Taejun Kim (KimDarren) @mozzet.

License

NDEmailTextField is under MIT license. See the LICENSE for more info.