有没有办法一次又一次地将相同的图像添加到 ImageView 中?
假设我需要将相同的图像添加到 imageView 来获取图案,就像缩放一样,我有第一部分,但需要重复 10 次以上。
我该怎么做呢?
Suppose i need to add a same image to an imageView to get a pattern, same like a scale thing where i have first section but need to repeat it 10 more times.
How should i go for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会使用 10 个 UIImageView 实例,它们都指向同一个图像,而不是试图将它们塞入单个图像视图中。或者您可以降低一个级别并使用 Quartz 模式: http://developer.apple.com/library/ios/#documentation/GraphicsImaging/Conceptual/drawingwithquartz2d/dq_patterns/dq_patterns.html
I would use 10 UIImageView instances that all point to the same image, rather than trying to cram them into a single image view. Or you could go down a level and use a Quartz pattern: http://developer.apple.com/library/ios/#documentation/GraphicsImaging/Conceptual/drawingwithquartz2d/dq_patterns/dq_patterns.html