我有一个观点:
label1 和 label2 之间存在布局约束。按下按钮将文本 View 中的文本添加到 label1。在它调整标签 1 以适应文本之后(调用 sizeToFit)。调整大小后,它看起来约束不起作用:
有人知道如何使约束起作用吗?
我的代码:
@interface ViewController ()
{
CGFloat _width;
}
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
}
- (void) viewDidAppear:(BOOL)animated
{
_width = self.l1.frame.size.width;
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (IBAction)addText:(id)sender {
self.l1.text = [NSString stringWithFormat:@"%@ %@", self.l1.text, self.text.text];
self.l1.frame = CGRectMake(self.l1.frame.origin.x, self.l1.frame.origin.y, _width, 0);
[self.l1 sizeToFit];
}
@end
最佳答案
我找到了原因:高度约束等于标签 1 的 40。当我将其更改为更大或相等时,所有其他约束都可以正常工作。
关于ios - sizeToFit 和约束,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12973689/