Skip to content

christianhatch/JJMaterialTextField

 
 

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
  • iOS 7

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, juanjoguevara@gmail.com

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

  • Objective-C 94.1%
  • Ruby 5.9%