Skip to content

Instantly share code, notes, and snippets.

View yildirimatcioglu's full-sized avatar

Yildirim Atcioglu yildirimatcioglu

  • Getir NL
  • Amsterdam, Netherlands
  • X @wixvii
View GitHub Profile
@yildirimatcioglu
yildirimatcioglu / SelfSizedTableView.swift
Last active August 12, 2019 23:19
SelfSizedTableView for using tableView inside of scrollView
final class SelfSizedTableView: UITableView {
override var contentSize:CGSize {
didSet {
invalidateIntrinsicContentSize()
}
}
override var intrinsicContentSize: CGSize {
layoutIfNeeded()
return CGSize(width: UIView.noIntrinsicMetric, height: contentSize.height)