我尝试在Label后面设置图像。我现在使用以下代码:
label.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"image.png"]];
但图像不符合标签。注意角落。它应该是圆形的。
我做错了什么?
答案 0 :(得分:0)
您需要首先使背景图像变得紧张,然后将其设置为标签的背景图像。
UIImage *bgImage = [[UIImage imageNamed:@"image.png"]
resizableImageWithCapInsets:UIEdgeInsetsZero
resizingMode:UIImageResizingModeStretch];
label.backgroundColor = [UIColor colorWithPatternImage:bgImage];