3

我的应用程序中的 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;
    }
}
4

2 回答 2

7

只是遇到了同样的问题,不想子类化,只需要使用:

leftWrapper.userInteractionEnabled = NO;
于 2013-01-03T15:31:57.990 回答
1

我放弃了这种方法。我没有使用不可见的视图来偏移文本,而是选择了 UITextField 的子类,并为 UITextField 中的文本边界提供偏移 CGRect。以下 SO 帖子非常有帮助:

缩进 UITextField 中的文本

于 2012-06-07T20:27:08.537 回答