mirror of https://github.com/oxen-io/session-ios
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			113 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Objective-C
		
	
			
		
		
	
	
			113 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Objective-C
		
	
| //
 | |
| //  Copyright (c) 2018 Open Whisper Systems. All rights reserved.
 | |
| //
 | |
| 
 | |
| #import "OWSLabel.h"
 | |
| 
 | |
| NS_ASSUME_NONNULL_BEGIN
 | |
| 
 | |
| @interface OWSLabel ()
 | |
| 
 | |
| @property (nonatomic, nullable) NSValue *cachedSize;
 | |
| 
 | |
| @end
 | |
| 
 | |
| #pragma mark -
 | |
| 
 | |
| @implementation OWSLabel
 | |
| 
 | |
| - (void)setText:(nullable NSString *)text
 | |
| {
 | |
|     if ([NSObject isNullableObject:text equalTo:self.text]) {
 | |
|         return;
 | |
|     }
 | |
|     [super setText:text];
 | |
|     self.cachedSize = nil;
 | |
| }
 | |
| 
 | |
| - (void)setAttributedText:(nullable NSAttributedString *)attributedText
 | |
| {
 | |
|     if ([NSObject isNullableObject:attributedText equalTo:self.attributedText]) {
 | |
|         return;
 | |
|     }
 | |
|     [super setAttributedText:attributedText];
 | |
|     self.cachedSize = nil;
 | |
| }
 | |
| 
 | |
| - (void)setTextColor:(nullable UIColor *)textColor
 | |
| {
 | |
|     if ([NSObject isNullableObject:textColor equalTo:self.textColor]) {
 | |
|         return;
 | |
|     }
 | |
|     [super setTextColor:textColor];
 | |
|     // No need to clear cached size here.
 | |
| }
 | |
| 
 | |
| - (void)setFont:(nullable UIFont *)font
 | |
| {
 | |
|     if ([NSObject isNullableObject:font equalTo:self.font]) {
 | |
|         return;
 | |
|     }
 | |
|     [super setFont:font];
 | |
|     self.cachedSize = nil;
 | |
| }
 | |
| 
 | |
| - (void)setLineBreakMode:(NSLineBreakMode)lineBreakMode
 | |
| {
 | |
|     if (self.lineBreakMode == lineBreakMode) {
 | |
|         return;
 | |
|     }
 | |
|     [super setLineBreakMode:lineBreakMode];
 | |
|     self.cachedSize = nil;
 | |
| }
 | |
| 
 | |
| - (void)setNumberOfLines:(NSInteger)numberOfLines
 | |
| {
 | |
|     if (self.numberOfLines == numberOfLines) {
 | |
|         return;
 | |
|     }
 | |
|     [super setNumberOfLines:numberOfLines];
 | |
|     self.cachedSize = nil;
 | |
| }
 | |
| 
 | |
| - (void)setAdjustsFontSizeToFitWidth:(BOOL)adjustsFontSizeToFitWidth
 | |
| {
 | |
|     if (self.adjustsFontSizeToFitWidth == adjustsFontSizeToFitWidth) {
 | |
|         return;
 | |
|     }
 | |
|     [super setAdjustsFontSizeToFitWidth:adjustsFontSizeToFitWidth];
 | |
|     self.cachedSize = nil;
 | |
| }
 | |
| 
 | |
| - (void)setMinimumScaleFactor:(CGFloat)minimumScaleFactor
 | |
| {
 | |
|     if (self.minimumScaleFactor == minimumScaleFactor) {
 | |
|         return;
 | |
|     }
 | |
|     [super setMinimumScaleFactor:minimumScaleFactor];
 | |
|     self.cachedSize = nil;
 | |
| }
 | |
| 
 | |
| - (void)setMinimumFontSize:(CGFloat)minimumFontSize
 | |
| {
 | |
|     if (self.minimumFontSize == minimumFontSize) {
 | |
|         return;
 | |
|     }
 | |
|     [super setMinimumFontSize:minimumFontSize];
 | |
|     self.cachedSize = nil;
 | |
| }
 | |
| 
 | |
| - (CGSize)sizeThatFits:(CGSize)size
 | |
| {
 | |
|     if (self.cachedSize) {
 | |
|         return self.cachedSize.CGSizeValue;
 | |
|     }
 | |
|     CGSize result = [super sizeThatFits:size];
 | |
|     self.cachedSize = [NSValue valueWithCGSize:result];
 | |
|     return result;
 | |
| }
 | |
| 
 | |
| @end
 | |
| 
 | |
| NS_ASSUME_NONNULL_END
 |