在我的应用程序中,我以编程方式使用简单的纯色制作标签背景,例如:
- (UIImage*)badgeImage
{
static UIImage *image = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
UIGraphicsBeginImageContextWithOptions(CGSizeMake(30, 20), NO, 0.0f);
[RGB(231, 112, 63) setFill];
[[UIBezierPath bezierPathWithRoundedRect:CGRectMake(0, 0, 30, 20) cornerRadius:10] fill];
image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
});
return image;
}
然后我使用-resizableImageWithCapInsets:
将此图片调整为所需大小,并将结果应用为标签背景:
CGSize someSize = MY_SIZE;
UIImage *resizableImage = [badgeImage resizableImageWithCapInsets:UIEdgeInsetsMake(0.0f, 10.0f, 0.0f, 10.0f)];
UIGraphicsBeginImageContextWithOptions(someSize, NO, 0);
[resizableImage drawInRect:CGRectMake(0, 0, someSize.width, someSize.height)];
UIImage *backImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
[label setFrameSize:someSize];
[label setBackgroundColor:[UIColor colorWithPatternImage:backImage]];
但是这给了我奇怪的结果:我不知道这条垂直线在哪里以及如何避免它。
答案 0 :(得分:1)
将resizableImage
放入UIImageView
,与label
具有相同的框架,解决了问题。
答案 1 :(得分:0)
在我的情况下,以下帮助(必须在UIGraphicsBeginImageContextWithOption之后调用)
CGContextSetShouldAntialias(UIGraphicsGetCurrentContext(), NO);