Skip to content

Instantly share code, notes, and snippets.

@paigeshin
Last active January 13, 2022 07:15
Show Gist options
  • Save paigeshin/281a738f7208003a2f07ce5a19eaf37a to your computer and use it in GitHub Desktop.
Save paigeshin/281a738f7208003a2f07ce5a19eaf37a to your computer and use it in GitHub Desktop.
class AutoSizingUiTableView : UITableView
{
override func intrinsicContentSize() -> CGSize
{
let requiredHeight = rowCount * rowHeight
return CGSize(width: UIView.noIntrinsicMetric, height: CGFloat(requiredHeight))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment