mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Now RCTTextLayoutManager (and TextLayoutManager) not only accept `AttributedStringBox` but also is capable to measure such kind of string when it contains a pointer to NSAttributedString. The same can be implemented for Android when/if needed. Changelog: [Internal] Fabric-specific internal change. Reviewed By: sammy-SC Differential Revision: D18670791 fbshipit-source-id: f19089de64d00e1290767310a500ade4cede4685
46 lines
1.7 KiB
Objective-C
46 lines
1.7 KiB
Objective-C
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import <react/attributedstring/AttributedString.h>
|
|
#import <react/attributedstring/ParagraphAttributes.h>
|
|
#import <react/core/LayoutConstraints.h>
|
|
#import <react/graphics/Geometry.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/**
|
|
* iOS-specific TextLayoutManager
|
|
*/
|
|
@interface RCTTextLayoutManager : NSObject
|
|
|
|
- (facebook::react::Size)measureAttributedString:(facebook::react::AttributedString)attributedString
|
|
paragraphAttributes:(facebook::react::ParagraphAttributes)paragraphAttributes
|
|
layoutConstraints:(facebook::react::LayoutConstraints)layoutConstraints;
|
|
|
|
- (facebook::react::Size)measureNSAttributedString:(NSAttributedString *)attributedString
|
|
paragraphAttributes:(facebook::react::ParagraphAttributes)paragraphAttributes
|
|
layoutConstraints:(facebook::react::LayoutConstraints)layoutConstraints;
|
|
|
|
- (void)drawAttributedString:(facebook::react::AttributedString)attributedString
|
|
paragraphAttributes:
|
|
(facebook::react::ParagraphAttributes)paragraphAttributes
|
|
frame:(CGRect)frame;
|
|
|
|
- (facebook::react::SharedEventEmitter)
|
|
getEventEmitterWithAttributeString:
|
|
(facebook::react::AttributedString)attributedString
|
|
paragraphAttributes:
|
|
(facebook::react::ParagraphAttributes)paragraphAttributes
|
|
frame:(CGRect)frame
|
|
atPoint:(CGPoint)point;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|