MyTextField.m 608 B

12345678910111213141516171819202122
  1. //
  2. // MyTextField.m
  3. // YBVideo
  4. //
  5. // Created by Rookie on 2017/8/19.
  6. // Copyright © 2017年 cat. All rights reserved.
  7. //
  8. #import "MyTextField.h"
  9. @implementation MyTextField
  10. -(void)drawPlaceholderInRect:(CGRect)rect {
  11. //设置富文本属性
  12. NSMutableDictionary *dictM = [NSMutableDictionary dictionary];
  13. dictM[NSFontAttributeName] = self.font;
  14. dictM[NSForegroundColorAttributeName] = _placeCol ? _placeCol:[UIColor whiteColor];
  15. CGPoint point = CGPointMake(0, (rect.size.height - self.font.lineHeight) * 0.5);
  16. [self.placeholder drawAtPoint:point withAttributes:dictM];
  17. }
  18. @end