I add the view as a subview using [self.view addSubview:myView] . This works great in portrait mode. However, it does not work at all in the landscape. How to add software layout constraints?
Currently, my look looks like a portrait rectangle, and I need it to look like a landscape rectangle in landscape mode.
I tried this code to see how the limitations of the code work, but always throw an exception. Code:
[self.view addSubview:_preView]; NSLayoutConstraint *myConstraint = [NSLayoutConstraint constraintWithItem:_preView attribute:NSLayoutAttributeBottom relatedBy:NSLayoutRelationEqual toItem:self.view.superview attribute:NSLayoutAttributeBottom multiplier:1.0 constant:-239]; [_preView addConstraint:myConstraint];
This always results in an exception. I know that the code above is simply trying to ensure that the bottom of the preview is 239 pixels higher than the bottom of the main view. But that doesn't work either.
Could you help me figure this out to solve the landscape problem?
UPDATE
Exception thrown:
2013-08-05 16:13:28.889 Sample Code[33553:c07] *** Terminating app due to uncaught exception 'NSGenericException', reason: 'Unable to install constraint on view. Does the constraint reference something from outside the subtree of the view? That illegal. constraint:<NSLayoutConstraint:0x912c430 UIView:0x8561340.bottom == UILayoutContainerView:0x8257340.bottom - 20> view:<UIView: 0x85774e0; frame = (0 0; 320 568); opaque = NO; autoresize = W+H; autoresizesSubviews = NO; layer = <CALayer: 0x8577490>>' *** First throw call stack: (0x1a04012 0x173be7e 0x1a03deb 0x12ee4a0 0xbb983e 0xbb9a27 0xbb9b76 0xbb9d3b 0xbb9c4d 0x1c0d9 0x11395b3 0x19c3376 0x19c2e06 0x19aaa82 0x19a9f44 0x19a9e1b 0x24027e3 0x2402668 0x67fffc 0x2d3d 0x2c65) libc++abi.dylib: terminate called throwing an exception (lldb)
I added a subview before adding to the constraint, so I'm sure the view is in a hierarchy.
UPDATE 2
I set the parent view property `Autoresize Subviews' to IB. Subview now converts to landscape rectangle when the device is rotated, but it is too narrow. Do I need code now to make sure it has the correct width?
source share