Fran Sevillano
Fran Sevillano

Reputation: 8163

Grouped UITableView shows weird square border

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

Upvotes: 0

Views: 387

Answers (2)

Nitish
Nitish

Reputation: 14113

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

Upvotes: 1

Robin
Robin

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

Related Questions