我需要为文本字段创建一个自定义占位符。我创建了自定义占位符方法,但没有得到如何在我的类中调用它,代码是:
(void)drawPlaceholderInRect:(CGRect)rect {
// Set colour and font size of placeholder text
[[UIColor redColor] setFill];
[[UIColor colorWithRed:255.0 green:0.0 blue:0.0 alpha:0.7] setFill];
[[self placeholder] drawInRect:rect withFont:[UIFont systemFontOfSize:5]];
}
在 main .h 中为自定义文本字段类创建了对象
CustomUITextFieldPlaceholder *txtName;
但不知道如何要求
**txt_userinput.placeholder=?**
如果有多个文本字段那么如何打电话请帮助提前谢谢