0
我想在UITableView中隱藏第一個區域的標題。因此,我在下面的函數中將高度設置爲0。但標題仍顯示?怎麼了?如果我將它設置爲例如1我在桌子上看到一條小線。有任何想法嗎?在UITabllView中隱藏區域標題
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
if (section == 0) {
return 0;
} else {
return 18;
}
}
貌似http://stackoverflow.com/questions/1386826/uitableview-not-respecting-heightforheaderinsection-heightforfooterinsection – NathanAldenSr
的重複描述了同樣的問題,但我發現了一個更好的解決方案(見下文)。 – Morpheus78