Last active
February 14, 2025 13:04
-
-
Save yildirimatcioglu/733939e398bca398e28811588756ee98 to your computer and use it in GitHub Desktop.
SelfSizedTableView for using tableView inside of scrollView
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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