react-native/ReactKit/Views/RCTShadowRawText.m

17 lines
263 B
Mathematica
Raw Normal View History

2015-01-30 01:10:49 +00:00
// Copyright 2004-present Facebook. All Rights Reserved.
#import "RCTShadowRawText.h"
@implementation RCTShadowRawText
- (void)setText:(NSString *)text
{
if (_text != text) {
_text = [text copy];
[self dirtyLayout];
[self dirtyText];
}
}
@end