Last active
April 20, 2020 13:04
-
-
Save billyohgren/7944887 to your computer and use it in GitHub Desktop.
Calculate the actual size of the content inside a UILabel
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
#import <UIKit/UIKit.h> | |
@interface UILabel (ContentSize) | |
- (CGSize)contentSize; | |
@end |
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
#import "UILabel+ContentSize.h" | |
@implementation UILabel (ContentSize) | |
- (CGSize)contentSize { | |
NSMutableParagraphStyle * paragraphStyle = [[NSMutableParagraphStyle alloc] init]; | |
paragraphStyle.lineBreakMode = self.lineBreakMode; | |
paragraphStyle.alignment = self.textAlignment; | |
NSDictionary * attributes = @{NSFontAttributeName : self.font, | |
NSParagraphStyleAttributeName : paragraphStyle}; | |
CGSize contentSize = [self.text boundingRectWithSize:self.frame.size | |
options:(NSStringDrawingUsesLineFragmentOrigin|NSStringDrawingUsesFontLeading) | |
attributes:attributes | |
context:nil].size; | |
return contentSize; | |
} |
That's cool
+1
fuck
Legend! Thanks!
Thank you
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thxs