A strange gray line appeared on top of my UITableView in iOS 5 (it was never present until I switched to Xcode 4.3 and launched the application on iPhone iOS 5) - did anyone else see this? I also got funny white lines in some of my other TableViewControllers, which I got rid of by doing this:
tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;
tableView.separatorColor = [UIColor clearColor];
However, this does not help to remove this line. There is no title. The line scrolls up and down using my UITableView 
g_low source
share