Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to have a UIImageView inside of a UIScrollView zoom in and out, but stick to center with Auto Layout?

Long story short, I'm trying to build functionality similar to Photos.app.

I have a UIScrollView with a UIImageView inside of it set up in the Storyboard. Zooming works, but I'm having trouble keeping it centered. In all my frame based scroll view implementations I've centered it as follows, which works beautifully:

- (void)scrollViewDidZoom:(UIScrollView *)scrollView {
    CGRect newImageViewFrame = self.imageView.frame;

    // Center horizontally
    if (newImageViewFrame.size.width < CGRectGetWidth(scrollView.bounds)) {
        newImageViewFrame.origin.x = (CGRectGetWidth(scrollView.bounds) - CGRectGetWidth(self.imageView.frame)) / 2;
    }
    else {
        newImageViewFrame.origin.x = 0;
    }

    // Center vertically
    if (newImageViewFrame.size.height < CGRectGetHeight(scrollView.bounds)) {
        newImageViewFrame.origin.y = (CGRectGetHeight(scrollView.bounds) - CGRectGetHeight(self.imageView.frame)) / 2;
    }
    else {
        newImageViewFrame.origin.y = 0;
    }

    self.imageView.frame = newImageViewFrame;
}

But with Auto Layout it isn't at all.

I have no constraints on the UIScrollView or UIImageView, as I don't know what they should be. I'm thinking I should glue the UIScrollView to the four corners, but for the UIImageView I'm not completely sure, as the zooming changes its frame.

Here's an example project: http://cl.ly/21371H3q381N

How would I go about having zooming with centering work with Auto Layout?

like image 243
Doug Smith Avatar asked Feb 12 '14 03:02

Doug Smith


1 Answers

When using Autolayout the calls to setFrames are not taking effects, thats why the imageView is not centered in your scrollView.

That being said, in order to achieve the center effect you can choose between:

  1. The easiest way is to set translatesAutoresizingMaskIntoConstraints to YES for your imageView in ViewDidLoad, that will translate the calls to setFrame: to new constraints based on your imageView autoresizingMask. But you should make sure that the new constraints are satisfied with the ones that you set in your storyboard (in your case none).

  2. In your scrollViewDidZoom: method add directly the constraints to center your imageView

-

 [self.imageView addConstraint:[NSLayoutConstraint constraintWithItem:self.imageView
       attribute:NSLayoutAttributeCenterX relatedBy:NSLayoutRelationEqual
       toItem:self.scrollView attribute:NSLayoutAttributeCenterX multiplier:1.0
       constant:0]];

 [self.imageView addConstraint:[NSLayoutConstraint constraintWithItem:self.imageView
       attribute:NSLayoutAttributeCenterX relatedBy:NSLayoutRelationEqual
       toItem:self.scrollView attribute:NSLayoutAttributeCenterX multiplier:1.0 
       constant:0]];
like image 189
MAB Avatar answered Oct 12 '22 23:10

MAB