Aspect Fit Background Color Spilling Over

194 Views Asked by At

I need the image to always aspect Fit - as I need to to retain it's shape within any given frame, however, when I stick a background color on the image it spills over, no matter what I seem to do. Any help?

-(void)layoutSubviews
{
    [super layoutSubviews];
    self.clipsToBounds = YES;
    self.nonScoreBasedView.clipsToBounds = YES;
    self.nonScoreBasedView.layer.masksToBounds = YES;
    self.nonScoreBasedView.backgroundColor = [UIColor yellowColor];
}

enter image description here

0

There are 0 best solutions below