Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Setting the background for the MenuViewController
- UIImage *image = [UIImage imageNamed:@"Pink-And-Blue-Background.jpg"];
- UIImageView *imageView = [[UIImageView alloc] initWithImage:image];
- imageView.contentMode = UIViewContentModeScaleAspectFill;
- //// imageView.contentMode = UIControlContentHorizontalAlignmentLeft;
- // Add image view on top of table view
- [self.tableView addSubview:imageView];
- // Set the background view of the table view
- self.tableView.backgroundView = imageView;
Advertisement
Add Comment
Please, Sign In to add comment