IOS开发修改textField的placeholder颜色、大小

利用KVC修改textField中placeholderLabel属性code

self.phoneFiled.placeholder = @"请输入手机号";
    [self.phoneFiled setValue:[UIFont boldSystemFontOfSize:15] forKeyPath:@"_placeholderLabel.font"];
    [self.phoneFiled setValue:[UIColor lightGrayColor] forKeyPath:@"_placeholderLabel.textColor"];
相关文章
相关标签/搜索