mohsinalimat / JJMaterialTextField

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

License

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

About

License:MIT License


Languages

Language:Shell 48.2%Language:Objective-C 45.5%Language:Ruby 6.4%