I'm really puzzled by this, when I use auto layout on a subview the layoutSubview method loops infinitely.
All I'm doing is:
- (id)init
{
self = [super init];
if(self)
{
self.backgroundColor = [UIColor grayColor];
_imageView = [[UIImageView alloc] init];
_imageView.translatesAutoresizingMaskIntoConstraints = NO;
[self addSubview:_imageView];
[self applyConstraints];
}
return self;
}
-(void)applyConstraints
{
[self addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|-0-[_imageView]-0-|" options:0 metrics:nil views:NSDictionaryOfVariableBindings(_imageView)]];
[self addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|-0-[_imageView]-0-|" options:0 metrics:nil views:NSDictionaryOfVariableBindings(_imageView)]];
}
And this causes an infinite loop in layoutSubviews. Actually even when applyConstraints is not called the loop occurs, the only way to stop it from happening is setting 'translatesAutoresizingMaskIntoConstraints' to YES.
Has anyone encountered/solved this problem before?
Update Just to clarify, this is an UIView subclass, which is used within a view controller. The view itself does not use auto layout, instead it's frame is set the old fashioned way after initialization.
This might help you.
layoutSubviews will be called
The loop was caused by one of the superviews, which was removing its subviews, setting their (possibly new) frame and then re-adding them. As the piece of code was absolutely unnecessary I removed it which fixed the problem.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With