Skip to content

Instantly share code, notes, and snippets.

@mickeyl
Last active March 11, 2016 10:24
Show Gist options
  • Save mickeyl/890e370a51b767f980b0 to your computer and use it in GitHub Desktop.
Save mickeyl/890e370a51b767f980b0 to your computer and use it in GitHub Desktop.
Poor man's UIStackView :)
-(CGSize)intrinsicContentSize
{
if ( _zeroIntrinsicContentSizeIfHidden && self.hidden )
{
return CGSizeZero;
}
return [super intrinsicContentSize];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment