Is it possible to change tableView.backgroundView frame?

ios, iphone, uitableview, xcode

Solution

In the docs it says:

A table view’s background view is automatically resized to match the size of the table view.

So I think it's alway resized again by the framework.

Problem

I want to put my table view background below the nav bar. When I try to change frame nothing happens.. ``` UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(100, -100, 320, 480)]; imageView.image = self.theme.bgImage; [self.tableView setBackgroundView:imageView]; ```

Original source