6

我想为 UIImageView 添加一个白色边框。我尝试了以下方法,但没有奏效:

    UIImage *image = [UIImage imageNamed:imagePath];
    UIImageView *imageView = [[UIImageView alloc] initWithImage:image];
    CGRect rect = imageView.frame;        
    rect.size.width = rect.size.width + 1; // create white right border
    [imageView setBackgroundColor:[UIColor whiteColor]]; 

    imageView.frame = rect;
    [myViewView addSubview:imageView];
4

2 回答 2

14

我现在这样做了

        CALayer *sublayer = [CALayer layer];
        sublayer.backgroundColor = [UIColor whiteColor].CGColor;
        sublayer.frame = CGRectMake(imageView.bounds.size.width, 0, 1, imageView.frame.size.height);
        [imageView.layer addSublayer:sublayer];
于 2012-06-06T18:05:05.170 回答
1

您可以创建一个比 UIImage 视图更大的 UIView,并将图像视图的框架设置为 0,0,宽度 + 1,高度,这会将多余的部分添加到侧面。

于 2012-06-06T17:38:11.357 回答