Skip to content

Instantly share code, notes, and snippets.

@asparagui
Created May 21, 2012 23:15
Show Gist options
  • Select an option

  • Save asparagui/2765321 to your computer and use it in GitHub Desktop.

Select an option

Save asparagui/2765321 to your computer and use it in GitHub Desktop.
self.tableView.backgroundColor=[UIColor clearColor];
UIImage *backgroundImage = [UIImage imageNamed:@"about_background.png"];
UIImageView *backgroundImageView = [[UIImageView alloc]initWithImage:backgroundImage];
backgroundImageView.frame = CGRectMake(500, 500, 1000, 2000);
backgroundImageView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
self.tableView.backgroundView = backgroundImageView;
[backgroundImageView release];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment