UITableViewCell Self-Sizing 步驟如下:
- 步驟1: 設置 UITableView estimatedRowHeight 跟 rowHeight.
self.tableView.estimatedRowHeight = 44.0;
self.tableView.rowHeight = UITableViewAutomaticDimension;
- 步驟2: Override UITableViewCell sizeThatFits, 或是使用 autoLayout.