gpt4 book ai didi

ios - 无法更改 UITextField 的宽度

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:22:56 24 4
gpt4 key购买 nike

我有一个 UITextField,我打算在用户触摸 TextField 并调出时以编程方式在其右侧添加一个 UIButton键盘。

------------------------------
|--------------------------- |
|| textfield | |
|--------------------------- |
------------------------------

当键盘被调出时:

------------------------------
|------------------ |
|| textfield | BUTTON |
|------------------ |
------------------------------

我使用 Storyboard 和 AutoLayout 来构建界面,这些元素都很好地连接在一起。

当我尝试更改 UITextField 的宽度时,它根本没有改变,导致 Button 被放置在文本字段“内部”,就像屏幕截图如下:

enter image description here

这是我的代码:

// code to add the button
- (void)keyboardWasShown:(NSNotification*)aNotification
{
// dynamically add a "reply" button
button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[self.replyViewBox addSubview:button];
[button setTitle:@"Reply" forState:UIControlStateNormal];
// change button size & position
button.frame = CGRectMake(265.0, 10.0, 46.0, 30.0);
// [button sizeToFit];
// change replyText size
CGRect frameRct = replyText.frame;
frameRct.size.width = 248.0;
replyText.frame = frameRct;

[replyViewBox addSubview:button];

}

我已经通过 Storyboard 设置了约束,那么是否可以让我在保持 AutoLayout 的同时以编程方式更改宽度?

最佳答案

我想我会试试这个来找乐子。这是我所做的:

1) 为文本字段和按钮设置父 View ,创建约束以将文本字段的右边缘与其父 View 的右边缘保持恒定距离。请在此处查看突出显示的约束...

enter image description here

2) 为该约束、按钮和 TextView 创建导出:

@interface ViewController ()

@property (weak, nonatomic) IBOutlet UITextField *textField;
@property (weak, nonatomic) IBOutlet UIButton *button;
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *textHorizontalTrailConstraint;

@end

3) 添加一个方法,让我们可以查询该约束的状态。当该约束具有非零常量时,键盘模式开启。

- (BOOL)keyboardModeIsOn {
return self.textHorizontalTrailConstraint.constant > 0;
}

4) 最后,一种基于 bool 值调整约束和隐藏/取消隐藏按钮的方法。为了好玩,我添加了一个可选的 bool 来制作动画过渡。从键盘通知中调用它。

- (void)setKeyboardModeOn:(BOOL)on animated:(BOOL)animated {

if (on == [self keyboardModeIsOn]) return;

CGFloat htrailConst = (on)? 132 : 0;
CGFloat alpha = (on)? 1.0 : 0;
NSTimeInterval duration = (animated)? 0.5 : 0;

[self.view layoutIfNeeded];
[UIView animateWithDuration:duration animations:^{
self.textHorizontalTrailConstraint.constant = htrailConst;
self.button.alpha = alpha;
[self.view layoutIfNeeded];
}];
}

我对此进行了测试,它看起来不错。

关于ios - 无法更改 UITextField 的宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24091854/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com