将背景图像添加到选项卡式应用程序中导航视图中的表格

发布于 2024-09-02 13:41:16 字数 178 浏览 5 评论 0原文

我有一个选项卡式应用程序,其中有一个导航控制器。在每个导航控制器中,我都有一个表视图控制器,其中显然包含一个表。我从这个控制器中推出了一个新的表视图控制器。

我想为表格添加背景,但只能在表格前面添加图像。我认为这可能是因为我在表视图控制器中添加子视图,但我似乎无法在其他任何地方添加它。

请你能帮助我吗,谢谢。

I have a tabbed application which then has a navigation controller. In each the navigation controller I an a table View Controller which obviously contains a table. I push a new table view controller from this one.

I want to put a background to the table but can only add an image infront of the table. I think this may be because I am adding the sub view in the table view controller, but I don't seem to be able to add it anywhere else.

Please could you help me, thanks.

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

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

发布评论

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

评论(2

无名指的心愿 2024-09-09 13:41:16

尝试将 UITableView.backgroundView 设置为您选择的 UIImageView,如果这对您没有太大帮助,请尝试将每个单元格的 UITableViewCell.backgroundView 设置为类似的内容。据我记得 UITableViewCell 是不透明的,并且 UITableView 在它下面不一定可见。

Try setting UITableView.backgroundView to say UIImageView of your choice and if that's not helping you too much, try setting the UITableViewCell.backgroundView for each of your cell to something similar. As far as I remember the UITableViewCell is opaque and the UITableView is not necessarily seen under it.

彡翼 2024-09-09 13:41:16

我已经使用视图控制器添加了 uiimage 视图,然后也添加了表视图控制器视图。这会获得所需的视觉结果,但表格不再位于导航堆栈中,因此当您在单元格上单击时,它不会推送导航控制器。

有没有办法在表视图控制器和它的视图控制器之间进行通信?

I have used a view controller to add the uiimage view then the table view controller view too. This gets the desired visual result, but the table is no longer in the navigation stack so when you clikc on the cell it doesn't push the nav controller.

Is there a way to talk between the table view controller and its view controller?

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