AutoAdjustableTable.swift 455 B

12345678910111213141516171819202122
  1. //
  2. // AutoAdjustableTable.swift
  3. // LMS
  4. //
  5. // Created by Suraj Kumar Mandal on 06/02/23.
  6. //
  7. import Foundation
  8. import UIKit
  9. final class AutoAdjustableTable: UITableView {
  10. override var contentSize:CGSize {
  11. didSet {
  12. invalidateIntrinsicContentSize()
  13. }
  14. }
  15. override var intrinsicContentSize: CGSize {
  16. layoutIfNeeded()
  17. return CGSize(width: UIView.noIntrinsicMetric, height: contentSize.height)
  18. }
  19. }