我的应用程序中的 UITextFields 定义了占位符文本(在 Interface Builder 中),当我点击占位符文本占用的区域时,我无法使这些字段获得焦点(即显示键盘并允许编辑)。如果我在占位符文本之外的区域中点击文本字段(尽管仍在文本文件本身的范围内),它会正常工作(即弹出键盘,我可以编辑文本字段的内容)。我怎样才能解决这个问题?
谢谢。
编辑 1
好的,我想我明白了。我还为这些 UITextFields 的“leftView”属性设置了一个空白视图。如果我删除它,您可以触摸占位符文本区域中的 UITextFields,它会按预期做出反应;我需要这个左视图的视图。如果你把这个 spacer view 的背景颜色改成红色,你可以看到它根本没有碍事,所以我不知道出了什么问题。
为什么这段代码会导致这个问题?
谢谢。
+(UIView*)getTextFieldLeftSpacerViewWithBackgroundColor:(UIColor*)backgroundColor andHeight:(CGFloat)height
{
UIView *leftWrapper = [[UIView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 8.0f, height)];
leftWrapper.autoresizingMask = UIViewAutoresizingNone;
[leftWrapper setOpaque:YES];
if(backgroundColor){leftWrapper.backgroundColor = backgroundColor;}
else{leftWrapper.backgroundColor = [UIColor clearColor];}
return [leftWrapper autorelease];
}
+(void)setTextFieldLeftSpacerForTextFieled:(UITextField*)textField
{
if(textField)
{
UIView *spacer = [MYViewController getTextFieldLeftSpacerViewWithBackgroundColor:nil andHeight:textField.bounds.size.height];
textField.leftView = spacer;
textField.leftViewMode = UITextFieldViewModeAlways;
}
}