Skip to content

Instantly share code, notes, and snippets.

@lm2s
lm2s / IntrinsicTableView.swift
Last active September 27, 2018 15:31
[Bottom UITableView] UITableBottom attached to bottom #swift #ios
class IntrinsicTableView: UITableView {
override var contentSize:CGSize { didSet { self.invalidateIntrinsicContentSize() }
}
override var intrinsicContentSize: CGSize {
self.layoutIfNeeded()
return CGSize(width: UIView.noIntrinsicMetric, height: contentSize.height)
}
}