Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

XCode Version: 4.3.2 iOS 5.0

I am trying to set the background image for my TableViewController. I have a table already in the controller, just not sure how and where (which method to write the code in) to set the background image for this. Once I set it does anyone also know how to put the table at the bottom of the screen? If someone can outline the steps, i would be grateful.

Really appreciate some help!

share|improve this question

1 Answer

up vote 0 down vote accepted

I do it inside the viewDidLoad method. For example so:

UIImageView *bgView = [UIImageView ....];
self.tableView.backgroundView = bgView;
[bgView release];
share|improve this answer
I have to release this in X Code 4.3.2? – Masterminder Jun 13 '12 at 17:39
@Masterminder only if you don't use ARC – iMx Jun 13 '12 at 17:45
thanks for the help it works! By any chance do you know how to move the table to the bottom of the screen? It is currently at the top . – Masterminder Jun 13 '12 at 17:57
@Masterminder what do you mean with the "bottom of the screen"? a UITableView fills normally the whole parent view. But i think, it should be an another question. Please accept my answer if it was helpful. Read the FAQ for more info! Thanks – iMx Jun 13 '12 at 18:08
When I Created the table, XCode Automatically places it at the top part of the screen, I want it to be shifted downwards so I can see the image in the background. Hope that is clear! – Masterminder Jun 13 '12 at 18:22
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.