在uiview或uiimageview中使用图像而不是颜色作为边框

时间:2016-02-19 04:49:33

标签: ios objective-c uiview uiimageview border

我想给我的uiview和uiimageview边框,但不能像cgcolor一样,我想设置一些图像作为边框颜色是否可能在目标c。

感谢Image to be used as border ...

2 个答案:

答案 0 :(得分:0)

您可以使用想要使用的图像创建颜色:

UIColor * color = [UIColor colorWithPatternImage:[UIImage imageNamed:@"border.png"]];
view.layer.borderColor = color.CGColor

答案 1 :(得分:0)

您是否看过[UIColor colorWithPatternImage: [UIImage imageNamed: @"image.png"]];

Apple Docs