Skip to content

Instantly share code, notes, and snippets.

@RyogaK
Created May 31, 2016 03:10
Show Gist options
  • Save RyogaK/d9f7f3efb480340f381446f5ade5c617 to your computer and use it in GitHub Desktop.
Save RyogaK/d9f7f3efb480340f381446f5ade5c617 to your computer and use it in GitHub Desktop.
//
// FlattenedTableView.swift
//
// Created by Ryoga Kitagawa on 3/16/16.
//
import UIKit
@IBDesignable class FlattenedTableView: UITableView {
override func reloadData() {
super.reloadData()
invalidateIntrinsicContentSize()
}
override func intrinsicContentSize() -> CGSize {
return CGSize(width: UIViewNoIntrinsicMetric, height: contentSize.height - 1/UIScreen.mainScreen().scale)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment