.h文件
#import <UIKit/UIKit.h>
@interface UITextFieldBottomLine : UITextField
- (CGRect)textRectForBounds:(CGRect)bounds;
- (CGRect)editingRectForBounds:(CGRect)bounds;
@end
.m文件
//底部細線
- (void)drawRect:(CGRect)rect {
CGContextRef context = UIGraphicsGetCurrentContext();
//顏色
CGContextSetFillColorWithColor(context, [UIColor lightGrayColor].CGColor);
//范圍
CGContextFillRect(context, CGRectMake(0, CGRectGetHeight(self.frame) - 0.5, CGRectGetWidth(self.frame), 0.5));
}
//控制文本所在的的位置预皇,左右縮 10
- (CGRect)textRectForBounds:(CGRect)bounds {
return CGRectInset( bounds , 10 , 0 );
}
//控制編輯文本時所在的位置漏健,左右縮 10
- (CGRect)editingRectForBounds:(CGRect)bounds {
return CGRectInset( bounds , 10 , 0 );
}