用背景图像覆盖 UIView
是否可以在不使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自 UIView 文档:
使用第二个选项,将 someView 设置为 yourImage.png 背景:
someView.layer.contents = (id)[[UIImage imageNamed:@" yourImage.png"] CGImage];
From the UIView documentation:
Using the second option, to set someView to have a background of yourImage.png:
someView.layer.contents = (id)[[UIImage imageNamed:@"yourImage.png"] CGImage];
如果“覆盖 UIView”是指用图像绘制其背景,则可以这样做:
您还可以添加一个新的 UIImageView 来覆盖您的 UIView
通过代码,使用与 UIView 相同的框架 Rect 初始化 UIImageView 并将其添加为子视图。
if by Overlying a UIView you mean painting its background with an image, it can be done like this:
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.