0

I put a UITableView in a UIPopover, and got these white edges instead of real rounded corners when the table view's scrollbar is visible (and, after some time, even without the scrollbar):

enter image description here

Is this expected behaviour? I know that UIPopover is supposed to add a clipping mask with rounded corners to child views, but I can't imagine that this should happen?

manmal
  • 3,900
  • 2
  • 30
  • 42

1 Answers1

1

Try this:

EDIT I assume u have tableView

[yourTableView setBackgroundColor:[UIColor clearColor]];

[yourPopover.contentViewController.view setBackgroundColor:[UIColor clearColor]];
Paresh Navadiya
  • 38,095
  • 11
  • 81
  • 132
  • no, does not do the trick. as i mentioned, the problem is not always visible, but only when scrolling, and after some time the problem persists even after stopping scrolling. – manmal Aug 28 '12 at 11:53