使用 CGRect 显示的图像遮盖了 UIButtons

发布于 2024-09-16 14:11:12 字数 397 浏览 2 评论 0原文

我有一个使用 CGRect 显示的图像(代码如下)。问题是它模糊了 nib 文件中的 UIButtons。

CGRect myImageRect = CGRectMake(0.0f, 40.0f, 480.0f, 280.0f);
UIImageView *myImage = [[UIImageView alloc] initWithFrame:myImageRect];
[myImage setImage:[UIImage imageNamed:recipe.image]];
[self.view addSubview:myImage];
[myImage release];

如果我将 CGRect 变小,UIButton 就在那里。 我不知道如何解决这个问题,非常感谢任何帮助。

谢谢

I have an image displayed using CGRect (code below). the problem is that it's obscuring UIButtons I have in the nib file.

CGRect myImageRect = CGRectMake(0.0f, 40.0f, 480.0f, 280.0f);
UIImageView *myImage = [[UIImageView alloc] initWithFrame:myImageRect];
[myImage setImage:[UIImage imageNamed:recipe.image]];
[self.view addSubview:myImage];
[myImage release];

if I make the CGRect smaller, the UIButtons are there.
I can't figure out how to fix this, any help is very appreciated.

thanks

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

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

发布评论

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

评论(1

没有心的人 2024-09-23 14:11:12

您需要将子视图发送到后面:

[self.view sendSubviewToBack:myImage];

You need to send your subview to the back:

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