Skip to content

Instantly share code, notes, and snippets.

@yildirimatcioglu
Last active August 12, 2019 23:19
Show Gist options
  • Save yildirimatcioglu/733939e398bca398e28811588756ee98 to your computer and use it in GitHub Desktop.
Save yildirimatcioglu/733939e398bca398e28811588756ee98 to your computer and use it in GitHub Desktop.
SelfSizedTableView for using tableView inside of scrollView
final class SelfSizedTableView: UITableView {
override var contentSize:CGSize {
didSet {
invalidateIntrinsicContentSize()
}
}
override var intrinsicContentSize: CGSize {
layoutIfNeeded()
return CGSize(width: UIView.noIntrinsicMetric, height: contentSize.height)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment