UITableView에서 사용자 정의 Header 사용 방법
6621 단어 UITableViewSwiftiOS
예제 코드
import UIKit
final class SectionHeaderView: UITableViewHeaderFooterView {
static let height: CGFloat = 44
@IBOutlet weak var titleLabel: UILabel!
func setup(titleText: String) {
titleLabel.text = titleText
}
}
SampleViewController.swift
final class SampleViewController: UIViewController {
@IBOutlet private weak var tableView: UITableView!
override func viewDidLoad() {
super.viewDidLoad()
setupTableView()
}
private func setupTableView() {
tableView.separatorStyle = .none
tableView.delegate = self
tableView.dataSource = self
tableView.register(headerFooterViewClass: SectionHeaderView.self)
}
}
extension SampleViewController: UITableViewDataSource, UITableViewDelegate {
func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
let header = tableView.dequeueReusableHeaderFooterView(withClass: SectionHeaderView.self)
header.setup(titleText: "Section title")
return header
}
func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
return SectionHeaderView.height
}
func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
return CGFloat.leastNormalMagnitude
}
...
주의사항
UITableView 스타일을 그룹으로 설정합니다.
기본 Plain의 경우 스크롤해도 Header가 남아 있으므로 Grouped를 지정합니다.
HeightFooterInSection, HeightFooterInSection 지정
참조:iOS11에서 Grouped UITableView의 섹션 제목에 추가 높이가 발생하는 문제
Reference
이 문제에 관하여(UITableView에서 사용자 정의 Header 사용 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/k-yamada-github/items/b15e6aa34671c562ea34
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(UITableView에서 사용자 정의 Header 사용 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/k-yamada-github/items/b15e6aa34671c562ea34텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)