无法更改 UITextField 的宽度
Posted
技术标签:
【中文标题】无法更改 UITextField 的宽度【英文标题】:Can't change width of UITextField 【发布时间】:2014-06-06 23:01:27 【问题描述】:我有一个UITextField
,我打算在用户触摸TextField
并调出键盘时以编程方式在其右侧添加一个UIButton
。
------------------------------
|--------------------------- |
|| textfield | |
|--------------------------- |
------------------------------
当键盘被调出时:
------------------------------
|------------------ |
|| textfield | BUTTON |
|------------------ |
------------------------------
我使用 Storyboard
和 AutoLayout 来构建界面,并且这些元素都连接良好。
当我试图改变 UITextField
的宽度时,它根本没有改变,导致 Button
被放在文本字段的“内部”,如下图所示:
这是我的代码:
// 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 的同时以编程方式更改宽度?
【问题讨论】:
由于您使用的是自动布局,因此您必须更改约束,而不是框架。这是关于该主题的一个不错的答案:***.com/questions/15893022/… @danh 感谢链接。但是,在我删除了 TextField 的约束后,我仍然无法更改它的宽度。为什么? 您是否关闭了自动布局? 【参考方案1】:我想我会为了好玩而尝试一下。这是我所做的:
1) 为文本字段和按钮设置父视图,创建约束以将文本字段的右边缘与父视图的右边缘保持恒定距离。请参阅此处突出显示的约束...
2) 为该约束、按钮和文本视图创建出口:
@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 来使过渡动画化。从您的键盘通知中调用它。
- (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];
];
我对此进行了测试,看起来不错。
【讨论】:
以上是关于无法更改 UITextField 的宽度的主要内容,如果未能解决你的问题,请参考以下文章
如果我更改 UITextField 的外观,UIBarButtomItem tintColor 不起作用