Autoresizingmask , . AutoLayout translatesAutoresizingMaskIntoConstraints , . YES , . . AutoLayout, . AutoLayout .
, , IB. AutoLayout . . . . . IB, , . IBOutlet, . , . :
@interface ViewController ()
@property (nonatomic, weak) UIImageView *imageView;
@property (nonatomic, weak) NSLayoutConstraint *imageBottomToScrollView;
@end
@implementation ViewController
- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
UIDeviceOrientation orientation = [UIDevice currentDevice].orientation;
if (UIDeviceOrientationIsLandscape(orientation)) {
self.imageBottomToScrollView.constant = -CGRectGetHeight(self.imageView.frame);
} else if (UIDeviceOrientationIsPortrait(orientation)) {
self.imageBottomToScrollView.constant = 0;
}
}
@end
~