2015-02-06 23:45:28 +00:00
|
|
|
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
@interface RCTText : UIView
|
|
|
|
|
|
|
|
@property (nonatomic, copy) NSAttributedString *attributedText;
|
|
|
|
@property (nonatomic, assign) NSLineBreakMode lineBreakMode;
|
2015-02-07 19:22:53 +00:00
|
|
|
@property (nonatomic, assign) NSUInteger numberOfLines;
|
2015-02-06 23:45:28 +00:00
|
|
|
|
|
|
|
- (NSNumber *)reactTagAtPoint:(CGPoint)point;
|
|
|
|
|
|
|
|
@end
|