iOS 5中我的UITableView顶部出现了一条奇怪的灰线(直到我升级到Xcode 4.3并且在iOS 5 iPhone上运行应用程序时才出现) - 还有其他人看过这个?我也越来越搞笑的白线在一些我被这样摆脱我的其他TableViewControllers的:UITableView上的灰线iOS 5
// needed to get rid of funny white lines in iOS 5
tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;
tableView.separatorColor = [UIColor clearColor];
然而,这并不工作,删除此行。这里没有标题标题。该行与我的UITableView上下滚动
试试这个: tableView.separatorStyle = UITableViewCellSeparatorStyleNone; – iMash 2012-04-24 14:01:26
感谢您的快速反应 - 不幸的是,没有工作,线路仍然存在 – 2012-04-24 14:05:49