Skip to content

mozzet/NDEmailTextField

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NDEmailTextField

CocoaPods

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

Requirements

  • Xcode 8.0+
  • iOS 7.0+

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.