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

anu*_*nuj 3 scrollview uitableview swift3

我已经添加了一个HeaderView(从 .xib)到UITableView,当我加载时我将ViewController.But如何隐藏 tableView HeadertableView并在我向下滚动时显示 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

}
}
Run Code Online (Sandbox Code Playgroud)

Nis*_*ndi 5

在故事板中-> 选择您的 tableview-> 使用属性检查器-> 并将类型从普通更改为分组
在此处输入图片说明