12

私の UIImageView には、高解像度の画像がロードされています。UIImageView を UIStackView に追加すると、スタック ビューは最大 1900x1200 のサイズになります。UIImageView の contentMode は Aspect Fill に設定されています。

スタック ビューに追加した後、画像が現在のサイズ (130x130) のままになるようにするにはどうすればよいですか?

4

3 に答える 3

22

質問への回答が得られていることを願っています。

スタック ビューに配置する前に、高さと幅の制​​約を UIImageView に追加するだけです。両方とも 130 にすれば準備完了です。

于 2015-09-28T04:41:32.380 に答える
3

画像ビューのアスペクト比を設定することでこれを克服できました。MyUIImageViewは に直接追加されるUIStackViewのではなく、プレーンな にラップされますUIViewUIStackViewこのようにして、追加されたサブビューごとに作成される制約に直接干渉することを避けることができます。

PureLayout を使用した例:

#import <math.h>
#import <float.h>

@interface StackImageView : UIView

@property (nonatomic) UIImageView *imageView;
@property (nonatomic) NSLayoutConstraint *aspectFitConstraint;

@end

@implementation StackImageView

// skip initialization for sanity
// - (instancetype)initWithFrame:...

- (void)setup {
    self.imageView = [[UIImageView alloc] initForAutoLayout];
    self.imageView.contentMode = UIViewContentModeScaleAspectFit;

    [self addSubview:self.imageView];

    // pin image view to superview edges
    [self.imageView autoPinEdgesToSuperviewEdges];
}

- (void)setImage:(UIImage *)image {
    CGSize size = image.size;
    CGFloat aspectRatio = 0;

    // update image
    self.imageView.image = image;

    if(fabs(size.height) >= FLT_EPSILON) {
        aspectRatio = size.width / size.height;
    }

    // Remove previously set constraint
    if(self.aspectFitConstraint) {
        [self.imageView removeConstraint:self.aspectFitConstraint];
        self.aspectFitConstraint = nil;
    }

    // Using PureLayout library
    // you may achieve the same using NSLayoutConstraint
    // by setting width-to-height constraint with
    // calculated aspect ratio as multiplier value
    self.aspectFitConstraint =
    [self.imageView autoMatchDimension:ALDimensionWidth  
                           toDimension:ALDimensionHeight 
                                ofView:self.imageView
                        withMultiplier:aspectRatio 
                              relation:NSLayoutRelationEqual];
}

@end
于 2015-11-10T18:01:19.877 に答える