react-native-navigation的迁移库

RCTHelpers.h 548B

1234567891011121314151617
  1. //
  2. // RCTHelpers.h
  3. // ReactNativeControllers
  4. //
  5. // Created by Artal Druk on 25/05/2016.
  6. // Copyright © 2016 artal. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <React/RCTRootView.h>
  10. @interface RCTHelpers : NSObject
  11. +(BOOL)removeYellowBox:(RCTRootView*)reactRootView;
  12. + (NSMutableDictionary *)textAttributesFromDictionary:(NSDictionary *)dictionary withPrefix:(NSString *)prefix;
  13. + (NSMutableDictionary *)textAttributesFromDictionary:(NSDictionary *)dictionary withPrefix:(NSString *)prefix baseFont:(UIFont *)font;
  14. @end