Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Scrolling background image for UITableView?

There are currently a lot of answers on how to set a custom fixed background for a UITableView. But is there any trick to make the background image scroll together with the table cells?

Thanks!

like image 214
Stefano Verna Avatar asked Jul 13 '09 12:07

Stefano Verna


1 Answers

You have to set the background image via backgroundColor property of UITableView:

self.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"background.png"]];
like image 155
northsea Avatar answered Sep 30 '22 19:09

northsea