- Autocomplete email text field for iOS.
- Subclass of
UITextField
. - SUPER EASY to use.
- Customizable.
- Xcode 8.0+
- iOS 7.0+
We are also using NDEmailTextField
!
Use Cocoapods
pod 'NDEmailTextField'
-
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];
- Interface builder support.
- Attributed domain text.
NDEmailTextField is written by Taejun Kim (KimDarren) @mozzet.
NDEmailTextField is under MIT license. See the LICENSE for more info.