Reputation: 8163
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:
I am setting it up only through the Interface Builder
, here are the settings:
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:
Upvotes: 0
Views: 387
Reputation: 14113
This problem troubled me too. I too asked this question on bStackOverflow. Check it out. It is the right solution.
Upvotes: 1
Reputation: 10011
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.
Upvotes: 0