Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to define a background like the attached image to my UITableViewCell. I’m trying that with the code below but without success.

cell.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"teste1.png"]];

My UITableView is a grouped and static one. I've also tried to define tableView.backgroundcolor to clear color but also without success.

Any help will be appreciated. Thanks, Marcos

UITableViewCellBackground

enter image description here

share|improve this question

3 Answers

Try this...

cell.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"YOUR_IMAGE.png"]];

share|improve this answer
Don't forget that some of the UITableViewCell subviews do not have transparent background (e.g. contentView I think, which has an opaque white background, same with textLabel and detailTextLabel IIRC...) if you end up with white squares on your view, you need to set the relevant backgroundColor = [UIColor clearColor] – jon Jan 17 at 0:26
@PKCoder, with this solution the background image was not presented correct. Please check the screenshot the I've just uploaded – vilelam Jan 17 at 1:24
1  
"PKCoder" thnx it's exactly what i want..:-) – Ayaz Feb 7 at 13:12

In the Apple's UITableViewCell documation, about backgroundView:

The default is nil for cells in plain-style tables (UITableViewStylePlain) and non-nil for grouped-style tables UITableViewStyleGrouped). UITableViewCell adds the background view as a subview behind all other views and uses its current frame location.

So I don't think it would be a good idea to change the backgroundView for a grouped-style tables (which is happened your situation). Try to insert a new imageView above the back ground view:

UIImage *background = [UIImage imageWithContentsOfFile:@"teste1"];
UIImageView *cellBackgroundView = [[UIImageView alloc] initWithImage:background];
[cell insertSubview:cellBackgroundView aboveSubview:cell.backgroundView];

And don't forget to set the color to clear in all views may be above and block the background.

share|improve this answer
it didn't work.. what do you mean by block the background? – vilelam Jan 17 at 0:52
The backGroundColor of contentView of the cell which is above the backgroundView is not clear color by default, so remember to set it (and the background color for other views above the backgroundView) to show the backGroundView. And you should also check with the image frame, to ensure it fits the cell's frame. – onevcat Jan 17 at 6:25

I end up placing a UIButton inside the whole UITableViewCell area.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.