0

I am having a weird issue with a grouped UITableView. It shows a square border only on one of the views in the app, and only on the terminal that has iOS 3.1.3. Here you have an screenshot of the thing:

enter image description here

I am setting it up only through the Interface Builder, here are the settings:

enter image description here

The rest of the table views that are similarly set up in the app work just fine.

Does anyone have a clue about what might be causing this?

EDIT:

Setting the background color to clear color caused this: enter image description here

Fran Sevillano
  • 8,103
  • 4
  • 31
  • 45

2 Answers2

1

This problem troubled me too. I too asked this question on bStackOverflow. Check it out. It is the right solution.

Community
  • 1
  • 1
Nitish
  • 13,845
  • 28
  • 135
  • 263
  • I guess that works for iPad but i am getting the bug on iOS 3.1.3, whose `UITableViewCell` doesn't have the `backgroundView` property. – Fran Sevillano Oct 03 '11 at 13:21
0

in viewwillAppear method of your class set the backgroundcolor of your tableview as clearcolor like this

self.tableView.backgroundColor = [UIColor clearColor];

or in the xib file in view section of the table set the background property as clear color.

Robin
  • 10,011
  • 5
  • 49
  • 75