2
當我滾動例如某些偏移量時,如何更改我的tableview標題高度? 這是我的頭部實現,我使用自定義單元格作爲頭部。 但基本上我想要做的是顯示和隱藏標題時滾動在某些偏移量。iOS在滾動swift時更改UITableView標題高度
func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
let cell = tableView.dequeueReusableHeaderFooterViewWithIdentifier("tableViewHeader") as! MyTableViewHeaderCell
return cell
}
func tableView(tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
return 70
}
func scrollViewWillBeginDragging(scrollView: UIScrollView) {
if (scrollView.contentOffset.y>400){
// i want to try to change the height of header to be 0/hidden
}
當用戶和/或錶停止滾動時會發生什麼? – ddb
嗨@ddb取決於偏移量> 400時的偏移量,當偏移量<400時隱藏 – Voyager