用背景图像覆盖 UIView

发布于 2024-12-12 08:07:50 字数 123 浏览 0 评论 0原文

是否可以在不使用 Interface Builder 中的 UIImageView 的情况下用图像覆盖 UIView

如果没有,您将如何在代码中完成相同的任务?

Is it possible to overlay UIView with an image without using UIImageView from the Interface Builder?

If not, how would you accomplish the same in code?

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

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

发布评论

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

评论(2

如梦亦如幻 2024-12-19 08:07:50

来自 UIView 文档:

基于图像的背景 - 对于显示相对静态内容的视图,请考虑使用带有手势识别器的 UIImageView 对象,而不是自己子类化和绘制图像。或者,您也可以使用通用 UIView 对象并将图像指定为视图的 CALayer 对象的内容。

使用第二个选项,将 someView 设置为 yourImage.png 背景:

someView.layer.contents = (id)[[UIImage imageNamed:@" yourImage.png"] CGImage];

From the UIView documentation:

Image-based backgrounds - For views that display relatively static content, consider using a UIImageView object with gesture recognizers instead of subclassing and drawing the image yourself. Alternatively, you can also use a generic UIView object and assign your image as the content of the view’s CALayer object.

Using the second option, to set someView to have a background of yourImage.png:

someView.layer.contents = (id)[[UIImage imageNamed:@"yourImage.png"] CGImage];

猫瑾少女 2024-12-19 08:07:50

如果“覆盖 UIView”是指用图像绘制其背景,则可以这样做:

someView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"yourImage.png"]];

您还可以添加一个新的 UIImageView 来覆盖您的 UIView
通过代码,使用与 UIView 相同的框架 Rect 初始化 UIImageView 并将其添加为子视图。

if by Overlying a UIView you mean painting its background with an image, it can be done like this:

someView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"yourImage.png"]];

You could also add a new UIImageView that covers your UIView
by code, Init your UIImageView with the same frame Rect as your UIView and add it as a subview.

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