UITextField属性--PlaceHolder颜色自定义

//设置placeHolder的颜色

    UIColor *color = [UIColor whiteColor];

    self.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"请输入用户名" attributes:@{NSForegroundColorAttributeName: color}];


注:self就是定义的UITextField。

你可能感兴趣的:(xcode,ios开发,Object-C)