Skip to content

Instantly share code, notes, and snippets.

View billyohgren's full-sized avatar

Billy Ohgren billyohgren

View GitHub Profile
@billyohgren
billyohgren / UILabel+ContentSize.h
Last active April 20, 2020 13:04
Calculate the actual size of the content inside a UILabel
#import <UIKit/UIKit.h>
@interface UILabel (ContentSize)
- (CGSize)contentSize;
@end