react-native-navigation的迁移库

TimeInterval.m 243B

1234567891011121314
  1. #import "TimeInterval.h"
  2. @implementation TimeInterval
  3. - (NSTimeInterval)getWithDefaultValue:(double)defaultValue {
  4. return [super getWithDefaultValue:defaultValue] / 1000;
  5. }
  6. - (NSTimeInterval)get {
  7. return [super get] / 1000;
  8. }
  9. @end