I have a TableViewController and would like to have a static image as a background that doesn't scroll forward.
The way everyone recommends using
[UIColor colorWithPatternImage:[UIImage imageNamed:@"backgroundPattern.png"]]
doesn't work how it will be
1.) move forward and 2.) place the background pattern in each cell
I know how to do this in the XIB file (namely, adding another layer under the TableView), but how to do it programmatically from the TableViewController?
source share