gpt4 book ai didi

ios - 无法在 Storyboard 中将 UIImageView 放在 UITableView 后面

转载 作者:行者123 更新时间:2023-12-01 17:54:04 26 4
gpt4 key购买 nike

我似乎无法将 UIImageView 放置在我的 TableView Controller 上的 UITableView 后面。我试图在 Storyboard设计器中做到这一点。将 UIImageView 移动到 View Controller 上只是将 imageview 堆叠到 tableview 上。在以前版本的 XCode 中,我有一个窗口,允许我更改 View Controller 中 View 的堆栈顺序。这还有可能吗??我尝试在跳转栏中拖动 View ,但这不起作用。那么如何使用 XCode 5 完成此任务呢?

谢谢!

最佳答案

使用 UIViewController 作为 UITableView 的父级!

view

如果要设置 tableView 的背景,可以使用此代码

self.tableView.backgroundView = [[UIImageView alloc] initWithImage:
[UIImage imageNamed:@"bg"]];

关于ios - 无法在 Storyboard 中将 UIImageView 放在 UITableView 后面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21568250/

26 4 0