我有一个 UITextField ,我打算在用户触摸 TextField 并调出时以编程方式在其右侧添加一个 UIButton 键盘。
------------------------------
|--------------------------- |
|| textfield | |
|--------------------------- |
------------------------------
当键盘被调出时:
------------------------------
|------------------ |
|| textfield | BUTTON |
|------------------ |
------------------------------
我使用 Storyboard 和 AutoLayout 来构建界面,这些元素都连接良好。
当我试图改变 UITextField 的宽度时,它根本没有改变,导致 Button 被放置在文本字段的“内部”,就像截图如下:
这是我的代码:
// code to add the button
- (void)keyboardWasShownNSNotification*)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 的同时以编程方式更改宽度?
Best Answer-推荐答案 strong>
我想我会为了好玩而尝试一下。这是我所做的:
1) 为文本字段和按钮设置父 View ,创建约束以将文本字段的右边缘与父 View 的右边缘保持恒定距离。请参阅此处突出显示的约束...
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)setKeyboardModeOnBOOL)on animatedBOOL)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/
|