将PlaceHolder放置在TextField中

时间:2013-12-06 12:08:45

标签: ios iphone ios6 ios7

我想在textfield占位符文本中添加必填字段标记,如下图所示,请告诉我,我完全搞糊涂该怎么办

enter image description here

3 个答案:

答案 0 :(得分:6)

您可以使用:

NSMutableAttributedString *attriButedString = [[NSMutableAttributedString alloc]initWithString:@"Mandatory*"];
[attriButedString addAttribute:NSForegroundColorAttributeName 
                         value:[NSColor lightGrayColor] 
                         range:NSMakeRange(0, 9)];
[attriButedString addAttribute:NSForegroundColorAttributeName 
                         value:[NSColor redColor] 
                         range:NSMakeRange(9, 1)];
[[self.textField cell] setPlaceholderAttributedString:attriButedString];

这将如下所示:

enter image description here

注意:您可以根据您的stringlength计算硬编码范围。

答案 1 :(得分:0)

enter image description here

如果要从xib创建TextField,请单击文本字段并转到属性inspecter并在占位符文本字段中填充占位符名称

答案 2 :(得分:0)

试试这个......

 [tfSubject setValue:[UIColor colorWithRed:249.0/255.0 green:204.0/255.0 blue:88.0/255.0 alpha:1.0] forKeyPath:@"_placeholderLabel.textColor"];