textfield 的 placeholder 的属性怎么设置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了textfield 的 placeholder 的属性怎么设置相关的知识,希望对你有一定的参考价值。
参考技术A UITextField * textField = [[UITextField alloc]initWithFrame:CGRectMake(30, 150, 260, 30)];textField.borderStyle = UITextBorderStyleRoundedRect;
NSMutableAttributedString * attributedStr = [[NSMutableAttributedString alloc]initWithString:@"string"];
[attributedStr addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(0, attributedStr.length)];
textField.textAlignment = NSTextAlignmentCenter;
textField.attributedPlaceholder = attributedStr;
[self.view addSubview:textField];本回答被提问者和网友采纳
以上是关于textfield 的 placeholder 的属性怎么设置的主要内容,如果未能解决你的问题,请参考以下文章
iOS searchbar textfield placeholder color
设置textField的placegolder的字体大小和字体颜色