美文网首页
IOS 修改textFiled palceholder 颜色

IOS 修改textFiled palceholder 颜色

作者: xiao东哥 | 来源:发表于2016-11-03 13:53 被阅读0次

    iOS6.0之后提供的attributedPlaceholder属性

    NSString*holderText =@"输入餐厅名称或者编号";

    NSMutableAttributedString*placeholder = [[NSMutableAttributedStringalloc]initWithString:holderText];

    [placeholderaddAttribute:NSForegroundColorAttributeName

    value:[UIColorwhiteColor]

    range:NSMakeRange(0, holderText.length)];

    textFiled.attributedPlaceholder= placeholder;

    相关文章

      网友评论

          本文标题:IOS 修改textFiled palceholder 颜色

          本文链接:https://www.haomeiwen.com/subject/nynbuttx.html