react-native-navigation的迁移库

1234567891011121314151617
  1. #import "NoColor.h"
  2. @implementation NoColor
  3. - (BOOL)hasValue {
  4. return YES;
  5. }
  6. - (UIColor *)get {
  7. return nil;
  8. }
  9. - (UIColor *)getWithDefaultValue:(id)defaultValue {
  10. return nil;
  11. }
  12. @end