react-native-navigation的迁移库

Image.m 274B

1234567891011121314151617181920
  1. #import "Image.h"
  2. @interface Image()
  3. @property (nonatomic, retain) UIImage* value;
  4. @end
  5. @implementation Image
  6. - (UIImage *)get {
  7. return self.value;
  8. }
  9. - (UIImage *)getWithDefaultValue:(UIImage *)defaultValue {
  10. return [super getWithDefaultValue:defaultValue];
  11. }
  12. @end