设置plachHoder的占位符

2017-10-18  本文已影响12人  阶梯
NSMutableAttributedString *placeholder = [[NSMutableAttributedString alloc] initWithString:placeholderString];
    [placeholder addAttribute:NSForegroundColorAttributeName
                        value:UIColorFromRGB(0x999999)
                        range:NSMakeRange(0, placeholderString.length)];
    [placeholder addAttribute:NSFontAttributeName
                        value:[UIFont systemFontOfSize:14*SCALE]
                        range:NSMakeRange(0, placeholderString.length)];
    self.transTextField.attributedPlaceholder = placeholder;
上一篇 下一篇

猜你喜欢

热点阅读