本文介绍了在基于导航的应用程序中将背景图像添加到UITableViewController的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个基于导航的应用程序,我将 UITableViewControllers 推入堆栈。我想在我的所有 UITableViewControllers 中添加一个背景 UImage 。不是 UIColor ,而是 UImage 。我知道如何使用 Nib 文件并设置 UITableView 本身来使用 [UIColor ClearColor] ,但我不想浏览所有 UITableViewControllers 并将其更改为使用 Nib 文件等。

I have a navigation based app where I push UITableViewControllers onto the stack. I would like to add a background UImage to all of my UITableViewControllers. Not a UIColor, but an UImage. I know how I can do this using a Nib file and setting the UITableView itself to have use [UIColor ClearColor], but I don't want to go through all my UITableViewControllers and change them to using Nib files, etc.

我还发现,如果我只是在我的应用程序中使用一个tableviewcontroller,这将是很好的。我认为可能有一种方法可以通过在 UITableViewController 中默认创建的我的表视图下方添加子视图来实现此功能。

I also found this solution which would be great if I was just using a single tableviewcontroller in my app. I think there might be a way to make this work, by adding a subview "below" my table view that is created by default in a UITableViewController?

任何建议都会很棒。

推荐答案

这有点不同在基于导航的应用程序中:只需更改每个表视图所在的导航视图的背景。将以下代码放在每个UITableViewController的 viewDidLoad 中:

It's a little different in a navigation based app: just change the background of the navigation view that each table view is sitting on. Placing the following code in viewDidLoad of each UITableViewController works:

self.navigationController.view.backgroundColor = 
[UIColor colorWithPatternImage:[UIImage imageNamed:@"myImage.png"]];
self.tableView.backgroundColor = [UIColor clearColor];

但您可能只需要在导航控制器的顶层执行一次,而不是在每个tableview控制器中(尽管你仍然需要设置每个背景清除)。

But you may only need to do it once, at the top level of the navigation controller, rather than in each tableview controller (although you'll still have to set each background to clear).

这篇关于在基于导航的应用程序中将背景图像添加到UITableViewController的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-26 17:06