Is it possible to have a background image used behind a section in a UITableView?
I can’t think of how to achieve this.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can place a view behind your table view, set the table view’s background colour to [UIColor clearColor] and you will see the view behind
the drawback to this is that this will not be only limited to the section you want, one way I can think of to make sure this backing view is limited to one section only is to adjust the frame of the backing view to the area covered by the section whenever the table view is scrolled
you will need to do this at the start (probably in viewWillAppear:) as well to make sure the view starts off correctly.