Access each header and controls in the tableview in swift
问题 I have a UITableView with customized header. In that header I have a button with image. func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? { let cView = UIView(frame: CGRectMake(0, 0, tableView.frame.size.width, 40)) itemNumBtn = UIButton(frame: CGRectMake(0, 0, 70, 42)) itemNumBtn.setBackgroundImage(UIImage(named: "hide.png"), forState: .Normal) cView.addSubview(itemNumBtn) return cView } I have five header secion. in separate function how can get the