Skip to content

dailycafi/JJMaterialTextField

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JJMaterialTextField

A subclass of UITextfield based on Material Design in Objective C

Version License Platform

screenshot

Example project

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

Requirements

  • ARC
  • iOS8

Installation

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

pod "JJMaterialTextField"

Usage

Import

#import "JJMaterialTextField.h"

Initialize textfield and configure

JJMaterialTextfield *textField =[[JJMaterialTextfield alloc] initWithFrame:CGRectMake(40, 120, self.view.frame.size.width-80, 34)];
textField.textColor=[UIColor whiteColor];
[textField enableMaterialPlaceHolder:YES];
textField.errorColor=[UIColor colorWithRed:0.910 green:0.329 blue:0.271 alpha:1.000]; // FLAT RED COLOR
textField.lineColor=[UIColor colorWithRed:0.482 green:0.800 blue:1.000 alpha:1.000];
textField.tintColor=[UIColor colorWithRed:0.482 green:0.800 blue:1.000 alpha:1.000];
textField.placeholder=@"Username";
[self.view addSubview:textField];

Author

Juanjo Guevara, [email protected]

License

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 48.1%
  • Objective-C 45.5%
  • Ruby 6.4%