Skip to content
This repository has been archived by the owner on Feb 19, 2021. It is now read-only.

Latest commit

 

History

History

017-self-sizing-table-view-cells

Self-sizing Table View Cells

Demo

Self-sizing Table View Cells

Introduction

自身内容决定的大小 TableViewCells。

  1. 合理的约束。
  2. 关键代码:
tableView.rowHeight = UITableViewAutomaticDimension
tableView.estimatedRowHeight = 140
  1. Swift 4 的 Codable 运用。
  2. prefersLargeTitles 运用。

Notice

  1. 取消掉 TextView 的 Scrolling Enabled,否则布局约束出错。
  2. Dynamic Type 预置字体样式。
  3. NotificationCenter 监听辅助中的字号变化。

Reference