Skip to content

Instantly share code, notes, and snippets.

@danielgarbien
Created February 17, 2017 15:51
Show Gist options
  • Save danielgarbien/bc27cc4e0b36040458222ad0f0ac8b39 to your computer and use it in GitHub Desktop.
Save danielgarbien/bc27cc4e0b36040458222ad0f0ac8b39 to your computer and use it in GitHub Desktop.
import UIKit
class FullContentIntrinsicSizeTableView: UITableView {
override var contentSize: CGSize {
didSet {
if contentSize != oldValue {
invalidateIntrinsicContentSize()
}
}
}
override var intrinsicContentSize: CGSize {
return contentSize
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment