mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-06 07:06:11 +00:00
22 lines
704 B
Objective-C
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
|