Communities for your favorite technologies. Explore all Collectives
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Find centralized, trusted content and collaborate around the technologies you use most.
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
How to show Background image in UITableView Like
Please help me out. Thank you
Use this
UIImageView *imageView = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"cloud.png"] ]; self.tableView.backgroundView = imageView; [imageView release]; self.tableView.backgroundColor = [UIColor clearColor];
Add a comment
Add an UIImageView to the View, ontop of that place the UITableView and set the background color to clearcolor.
-[UIColor colorWithPatternImage:UIImage];
You can also go ahead and set the background color directly:
self.tableView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"image.jpg"]];
Start asking to get answers
Find the answer to your question by asking.
Explore related questions
See similar questions with these tags.