gpt4 book ai didi

ios - 如何以编程方式在 Storyboard subview 后面添加 subview

转载 作者:行者123 更新时间:2023-11-28 22:03:05 26 4
gpt4 key购买 nike

我有 UIViewController,它设置了顶级 Storyboard ,并且 Storyboard 中的 subview 很少。我想以编程方式添加 UIImageView 并将其设置为背景 View 。所以如果我添加一个 UIImageView, Storyboard subview 是不可见的。

how can I send this UIImageView behind all the storyboard subviews?

谢谢

最佳答案

您需要使用 sendSubviewToBack:

 UIImageView *imgView = [[UIImageView alloc]initWithFrame:self.view.frame];
imgView.image = [UIImage imageNamed:@"blank-background.jpg"];
[self.view addSubview:imgView];
[self.view sendSubviewToBack:imgView];

关于ios - 如何以编程方式在 Storyboard subview 后面添加 subview ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24646924/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com