我有一个UITableView填充此示例字典。
var WholeDict = [
"Animals" : ["Cat","Dog"],
"Fruits" : ["Apple","Orange"]
]
内容太小。所以我选择了分组的UITableView样式,这样我就可以避免在UITableView中显示在内容下面的不需要的单元格。但问题是,当我选择分组样式时,每个部分下的单元格在滚动时不会在标题下。滚动首先移动标题。 Grouped style: cells scrolling along with header& Plain style: cells sliding under header。这就是我在代码中所做的事情
func tableView(tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
let allkeys = Array(WholeDict.keys)
return allkeys[section]
}
func tableView(tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {
if let headerView = view as? UITableViewHeaderFooterView {
headerView.textLabel?.textAlignment = .Center
}
}
那么如何避免在tableview下面的额外空格,同时使用标题下的行滑动?
修改 我正在使用沃尔特斯的答案。它对我有用。但后来我又遇到了另一个问题。当我滚动到最后一行之外时,屏幕将只显示我添加的页脚。所以我添加了另一种解决方法。
func scrollViewDidEndDecelerating(scrollView: UIScrollView) {
let visiblerows = MyTable.indexPathsForVisibleRows
if visiblerows?.count == 0 {
let ScrollToIndexPath = NSIndexPath(forRow: 0, inSection: WholeDict.count - 1)
MyTable.scrollToRowAtIndexPath(ScrollToIndexPath, atScrollPosition: UITableViewScrollPosition.Top, animated: true)
}
}
答案 0 :(得分:1)
UITableView
将始终添加空白“单元格”以填充空格。为了使它们消失,你应该创建一个footerView,它填充最后一个填充行的底部和tableView底部之间的空间。这是一个快速示例,但您可能需要根据添加单元格的方式移动它。 tableView的contentSize
属性的高度等于tableView的填充部分。
let contentSize = self.tableView.contentSize
let footer = UIView(frame: CGRect(x: self.tableView.frame.origin.x,
y: self.tableView.frame.origin.y + contentSize.height,
width: self.tableView.frame.size.width,
height: self.tableView.frame.height - self.tableView.contentSize.height))
self.tableView.tableFooterView = footer
答案 1 :(得分:0)
如果您希望固定节标题,则可以使用此属性。
self.tableView.style = UITableViewStyleGrouped
它使您的部分标题贴在行上并随之滚动。