Created
June 5, 2013 09:34
-
-
Save odrobnik/5712761 to your computer and use it in GitHub Desktop.
Which to prefer?
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
- (CGSize)sizeThatFits:(CGSize)size | |
{ | |
CGSize neededSize = [self intrinsicContentSize]; // creates layout frame if necessary | |
if (neededSize.width>=0 && neededSize.height>=0) | |
{ | |
return neededSize; | |
} | |
// 1 | |
return CGSizeMake(_edgeInsets.left + _edgeInsets.right, _edgeInsets.bottom + _edgeInsets.top); | |
// 2 | |
return CGRectStandardize(UIEdgeInsetsInsetRect(CGRectZero, _edgeInsets)).size; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment