【问题标题】:UITextField as sublayerUITextField 作为子层
【发布时间】:2012-05-31 10:13:51
【问题描述】:

我将 UITextField 的层作为子层添加到实际上是 UIImageView 的现有层。我在图像视图上应用透视旋转,它工作正常。但是 UITextField 不会变为活动状态。发送给它的 beginFirstResponder 消息不显示键盘。点击它不起作用,它在用户交互中保持非活动状态。我还尝试为文本字段的图层设置 zPosition,使其位于 imageview 图层之上,并且是 zPosition。

    rightband = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"right-band.png"]];
    rightband.layer.frame = CGRectMake(623.5, 310.5, 624, 210);
    rightband.layer.zPosition = 40.0f;


    usernameField = [[UITextField alloc] initWithFrame:CGRectMake(10, 10, 260, 26)];
    usernameField.clearButtonMode = UITextFieldViewModeWhileEditing;
    usernameField.keyboardType = UIKeyboardTypeDefault;
    usernameField.autocapitalizationType = UITextAutocapitalizationTypeNone;
    usernameField.borderStyle = UITextBorderStyleNone;
    usernameField.backgroundColor = [UIColor clearColor];
    usernameField.font = [UIFont fontWithName:@"HelveticaNeue" size:17];
    usernameField.textColor = UIColorFromRGB(0x303030);
    usernameField.textAlignment = UITextAlignmentLeft;
    usernameField.placeholder = @"Username";
    usernameField.autocorrectionType = UITextAutocorrectionTypeNo;
    usernameField.returnKeyType = UIReturnKeyNext;
    usernameField.delegate = self;
    usernameField.layer.anchorPoint = CGPointMake(1.0f, 0.5f);
    usernameField.layer.zPosition = 100.0f;
    usernameField.layer.frame = CGRectMake(10, 10, 260, 26); 
    [rightband.layer addSublayer:usernameField.layer];

【问题讨论】:

    标签: iphone ipad calayer


    【解决方案1】:

    您应该添加文本字段视图以使其响应触摸。 这样做:

    [rightband addSubview:usernameField];
    

    【讨论】:

    • 对。我想了这么多。但随后我为右带设置动画(透视旋转)。应用子层变换直到它成为子层后才起作用。
    【解决方案2】:

    您可以尝试将视图层次结构更改为以下内容

    UIView -> UIImageView 和 UITextField 不要将 UITextField 作为子项添加到 UIImageView UITextField 和 UIImageView 都是 UIView 的子节点

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2014-01-11
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多