Created
May 31, 2016 03:10
-
-
Save RyogaK/d9f7f3efb480340f381446f5ade5c617 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// | |
// 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