Created
October 8, 2014 19:19
-
-
Save ashfurrow/50ed48707062bf50683b to your computer and use it in GitHub Desktop.
eff yeah
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
private class InfoView: UIView { | |
override func intrinsicContentSize() -> CGSize { | |
let height = subviews.map{ $0.intrinsicContentSize().height }.reduce(0, combine: +) | |
return CGSize(width: UIViewNoIntrinsicMetric, height: height) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment