Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以彩色图像长度会动态变化。我将在自定义图表上使用它。什么是最好的解决方案?现在我通过扩展 UIImage 来使用 Resize 类别。提前谢谢..
对于此任务,您可以使用UIImage stretchableImageWithLeftCapWidth:topCapHeight:的实例方法。认为
UIImage
[imgObj stretchableImageWithLeftCapWidth:4.0f topCapHeight:5.0f];
此方法调用将从图像的左右 4 像素和从顶部和底部的 5 像素显示,并将在中间重复其余图像。
但在您的情况下,这两个值都为零。