A subclass of UITextfield based on Material Design in Objective C
To run the example project, clone the repo, and run pod install
from the Example directory first.
- ARC
- iOS 7
JJMaterialTextField is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "JJMaterialTextField"
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];
Use placeholder Attributes
textField.placeholderAttributes = @{NSFontAttributeName : [UIFont systemFontOfSize:20],
NSForegroundColorAttributeName : [[UIColor grayColor] colorWithAlphaComponent:.8]};
Juanjo Guevara, juanjoguevara@gmail.com
JJMaterialTextField is available under the MIT license. See the LICENSE file for more info.