像这样。
闭关修行中......
方法不只一種,可以用category,可以直接騙用戶,可以...這裡說一種繼承,步驟如下: 1)繼承UITextfield 2)重寫子類別中的- (void)drawRect:(CGRect)rect 如下
- (void)drawRect:(CGRect)rect
- (void)drawRect:(CGRect)rect { CGContextRef context = UIGraphicsGetCurrentContext(); CGContextSetFillColorWithColor(context, [UIColor blackColor].CGColor); CGContextFillRect(context, CGRectMake(0, CGRectGetHeight(self.frame) - 0.5, CGRectGetWidth(self.frame), 0.5)); }
3)TestCode 如下:
#import "CustomField.h" @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. CustomField *textField = [CustomField new]; textField.frame = CGRectMake(0, 200, 100, 30); textField.backgroundColor = [UIColor yellowColor]; [self.view addSubview:textField]; }
4)效果圖:
方法不只一種,可以用category,可以直接騙用戶,可以...這裡說一種繼承,步驟如下:
1)繼承UITextfield
2)重寫子類別中的
- (void)drawRect:(CGRect)rect
如下3)TestCode 如下:
4)效果圖: