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