如何在向上滚动时显示/隐藏UITableView标题下?

时间:2017-08-31 11:16:59

标签: uitableview swift3 scrollview

我已将HeaderView(来自.xib)添加到UITableView,当我加载ViewController.But时它会正常显示我将如何隐藏tableView标题,因为我向上滚动到任何tableView的位置,当我向下滚动时显示HeaderView。如果有人可以帮助我,将不胜感激。以下是我的代码:

class ViewController: UIViewController,UITableViewDataSource,UIScrollViewDelegate {


@IBOutlet var myTable : UITableView!
var array = ["See All Local Deals","Food & Drink","Kids Activities","Taxi" , "Shopping" , "Local Tradesmen" , "Tattoo shop" , "Car Hire" , "Health & Fitness" , "Beauty & Spas" , "Home & Garden" , "Local Services" , "Nightlife" , "Wedding Planning" , "Holiday rentals"]

lazy var headerView : HeaderView? = {
    return Bundle.main.loadNibNamed("HeaderView", owner: self, options: nil)?[0] as? HeaderView

}()

override func viewDidLoad() {
    super.viewDidLoad()

    self.myTable.dataSource = self
  self.myTable.tableHeaderView = headerView

}

func numberOfSections(in tableView: UITableView) -> Int {
 return 1
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return array.count
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! MyCell

    cell.lblText.text = array[indexPath.row]
    return cell

}
}

2 个答案:

答案 0 :(得分:3)

在故事板中 - >选择您的tableview->与财产检查员一起 - >并将类型更改为从平原分组  enter image description here

答案 1 :(得分:0)

在Swift 5.0中

执行此操作的编程方式是使用UITableView.Style.grouped

self.tableView = UITableView(frame: .zero, style: .grouped)