UITextField设置placeholder颜色_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > UITextField设置placeholder颜色

UITextField设置placeholder颜色

 2014/12/2 19:08:40  粉粉色  程序员俱乐部  我要评论(0)
  • 摘要:效果图:代码:-(void)viewDidLoad{[superviewDidLoad];//Doanyadditionalsetupafterloadingtheview.UITextField*textField=[[UITextFieldalloc]initWithFrame:CGRectMake(50,100,200,50)];//UITextField设置placeholder颜色UIColor*color=[UIColorredColor];textField
  • 标签:

效果图:

代码:

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    
    
    
    UITextField *textField=[[UITextField alloc]initWithFrame:CGRectMake(50, 100, 200, 50)];
    
    //UITextField设置placeholder颜色
    UIColor *color = [UIColor redColor];
    textField.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"密码" attributes:@{NSForegroundColorAttributeName: color}];
    
    textField.delegate=self;
    [self.view addSubview:textField];
    
}

 

  • 相关文章
发表评论
用户名: 匿名