UIImage 只拉伸一部分
所以,假设我有这个精灵:
mbm
bcb
mbm
其中每个字母都是一部分。 (m: margin; b: border, c:center)
我想要一个能够重复 b 和 c 的类,只要它需要完成视图,所以我得到这样的东西:
mbbbbbbbbbbbbbm
bcccccccccccccb
bcccccccccccccb
bcccccccccccccb
mbbbbbbbbbbbbbm
有没有可以做到这一点的东西已经? 如果它不存在,关于如何实现它有什么想法吗?
So, lets say i have this sprite:
mbm
bcb
mbm
where each letter is a portion. (m: margin; b: border, c:center)
and I want a class that is able to repeat the b's and c as long as it needs to complete the view so i get something like this:
mbbbbbbbbbbbbbm
bcccccccccccccb
bcccccccccccccb
bcccccccccccccb
mbbbbbbbbbbbbbm
Is there something that can do this already?
If it doesn't exist, any ideas on how to implement it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
难道用这个方法就达不到这个目的吗?
-(UIImage *)stretchableImageWithLeftCapWidth:(NSInteger)leftCapWidth topCapHeight:(NSInteger)topCapHeight
(请参阅Apple UIImage 类参考 )
Could you not achieve this with this method ?
-(UIImage *)stretchableImageWithLeftCapWidth:(NSInteger)leftCapWidth topCapHeight:(NSInteger)topCapHeight
(see Apple UIImage Class Reference )
我们可以使用下面的代码拉伸图像:-这里我们需要 m..m 必须具有相同的尺寸,所以我们拉伸中间部分
We can stretch the image using the below code :- Here we need the m..m must be in same size so we stretch the middle portion