如何正确插入背景图片
我使用这段代码来设置背景图像。唯一的问题是它涵盖了我在 XIB 文件中插入的所有内容。我应该怎么做才能确保我的文本字段、按钮等也可见(在背景前面)。感谢您的帮助!
// Setup the background
UIImageView *background = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"background.png"]];
[self.view addSubview:background];
[background release];
I use this code to set a background image. The only problem is that it covers everything I insert in the XIB file. What should I do to ensure that my textfields, buttons, etc. are also visible (in front of the background). Thanks for your help!
// Setup the background
UIImageView *background = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"background.png"]];
[self.view addSubview:background];
[background release];
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用的是 XIB,则只需确保所有对象都位于
UIImageView
之上。或者,您可以使用
colorWithPatternImage:
If you are using an XIB, then just make sure that all of your objects are above the
UIImageView
.Alternatively, you can use
colorWithPatternImage: