UITextField+extension.m 533 B

1234567891011121314151617181920212223
  1. //
  2. // UITextField+extension.m
  3. // shiku_im
  4. //
  5. // Created by liujl on 2019/9/23.
  6. //
  7. #import "UITextField+extension.h"
  8. @implementation UITextField (extension)
  9. - (void)setPlaceHolderColor:(UIColor *)placeHolderColor{
  10. NSAssert(self.placeholder != nil, @"占位符不能为空");
  11. NSMutableAttributedString *placeholder = [[NSMutableAttributedString alloc] initWithString:self.placeholder attributes:@{NSForegroundColorAttributeName : placeHolderColor}];
  12. self.attributedPlaceholder = placeholder;
  13. }
  14. @end