Skip to content

Instantly share code, notes, and snippets.

@jerrypm
Created December 13, 2021 00:29
Show Gist options
  • Save jerrypm/3653fcf96482c547f5b7e08b076d0c92 to your computer and use it in GitHub Desktop.
Save jerrypm/3653fcf96482c547f5b7e08b076d0c92 to your computer and use it in GitHub Desktop.
This can help you set auto height table inside tableview
import Foundation
import UIKit
public class UITableViewCustom: UITableView {
public override var intrinsicContentSize: CGSize {
self.layoutIfNeeded()
return self.contentSize
}
public override var contentSize: CGSize {
didSet{
self.invalidateIntrinsicContentSize()
}
}
public override func reloadData() {
super.reloadData()
self.invalidateIntrinsicContentSize()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment