使用UIImageView的layer.border属性设置边框

时间:2012-10-19 16:43:41

标签: iphone objective-c xcode cocoa-touch uiimageview

我有一个有图像的UIImageView。 initWithFrame:(CGRect)frame看起来像这样:

#define BORDER_WIDTH_SELECTION 3
#define SELECTED_SCALE_VALUE 1.3

    self.layer.masksToBounds = NO;
    smallFrame_ = frame;
    float newX = self.center.x - ((self.frame.size.width*SELECTED_SCALE_VALUE)*0.5);
    float newY = self.center.y - ((self.frame.size.height*SELECTED_SCALE_VALUE)*0.5);
    bigFrame_ = CGRectMake(newX, newY, self.frame.size.width*SELECTED_SCALE_VALUE, self.frame.size.height*SELECTED_SCALE_VALUE);
    self.layer.borderWidth = BORDER_WIDTH_SELECTION;

然后我触发了这个

- (void) setSelected {
    [self makeThumbnailBig];
    self.layer.borderColor = [UIColor colorWithRed:178.0/255.0 green:19.0/255.0 blue:50.0/255.0 alpha:1.0].CGColor;
}

- (void)makeThumbnailBig
{    
    [UIView animateWithDuration:0.2 animations:^{
        self.frame = bigFrame_;
    }];
}

ImageView正确缩放并绘制红色边框,但image 中的ImageView从左边框下方突出显示大约一个像素或两个像素即可。我删除了图片,但这应该可以让您了解问题:

enter image description here

有什么想法吗?

1 个答案:

答案 0 :(得分:4)

在您的代码中有一行

self.layer.masksToBounds = NO;

根据问题,它应该是YES而不是

关于额外像素:

当您通过分区准备图像大小时,您可能会面临魔术图像高分辨率优化的问题。它首先将分形部分添加到UIImageView维度。见Points Versus Pixels