是否可以在单个 uiimageview 中添加多个图像?

发布于 2024-10-09 09:26:08 字数 167 浏览 4 评论 0原文

我有一个图像视图,我想在其中设置图像。我的设计师给了我一张与 imageview 高度相同但宽度为 imageview 的 1/10 的图像。他要求我像纹理一样在图像视图中重复它。

是否可以将多个图像添加到图像视图中?我知道我可以通过每次重复使用 10 个图像视图来做到这一点。还有其他类似纹理的方法吗?

I have an imageview in which I want an image to be set. My designer have given me an image which is of the same height of imageview but the width is 1/10th of the imageview. He asked me to repeat it inside the imageview like a texture.

Is it possible to add multiple images to an imageview? I know I can do it by using 10 imageviews for each reptition. Is there anyother way like the texture thing?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你不是我要的菜∠ 2024-10-16 09:26:08

重要编辑

虽然下面的答案是正确的,但我回答得太字面意思,并且没有建议适当的替代方案。

A UIImageView 只能有一张图像,但您可以使用 UIColorcolorWithPatternImage 方法用重复图案填充 UIView

// myView is the UIView to fill
// myImage is the UIImage to use as a fill pattern

myView.backgroundColor = [UIColor colorWithPatternImage:myImage];

< em>旧答案

不,每个 UIImageView 只能有一个 UIImage。您的设计师应该自己重复一遍,并为您提供合适尺寸的图像。 iPhone不是网络,要求不同。

Important Edit:

While the answer below is correct, I answered this too literally and didn't suggest the appropriate alternative.

A UIImageView can only have one image, but you can fill a UIView with a repeating pattern by using UIColor's colorWithPatternImage method:

// myView is the UIView to fill
// myImage is the UIImage to use as a fill pattern

myView.backgroundColor = [UIColor colorWithPatternImage:myImage];

Old Answer

No, only one UIImage per UIImageView. Your designer should repeat it himself and give you an image of the appropriate size. The iPhone is not the web, requirements are different.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文