我认为这是可能的,因为 UIImageView 做得很好。我可以在 UIView 的drawRect:
方法中以水平居中图像的方式绘制 UIImage,然后拉伸 UIImage 的边以填充 UIView 的提醒吗?
- (void)drawRect:(CGRect)rect {
[[[UIImage imageNamed:@"image"] resizableImageWithCapInsets:UIEdgeInsetsMake(0, 2, 0, 2)] drawInRect:rect];
}
整个图像一直在拉伸。例如,图像是 100 像素宽。中心的90个像素无法拉伸,但两边都有5个像素我想在两边拉伸到矩形的边缘。