Files
react-native-svg/apple/Text/RNSVGTopAlignedLabel.ios.m
2020-11-25 16:31:39 -08:00

22 lines
704 B
Objective-C

#if !TARGET_OS_OSX
#import "RNSVGTopAlignedLabel.h"
@implementation RNSVGTopAlignedLabel
- (void)drawTextInRect:(CGRect) rect
{
NSAttributedString *attributedText = [[NSAttributedString alloc] initWithString:self.text attributes:@{NSFontAttributeName:self.font}];
rect.size.height = [attributedText boundingRectWithSize:rect.size
options:NSStringDrawingUsesLineFragmentOrigin
context:nil].size.height;
if (self.numberOfLines != 0) {
rect.size.height = MIN(rect.size.height, self.numberOfLines * self.font.lineHeight);
}
[super drawTextInRect:rect];
}
@end
#endif