react-native-navigation的迁移库

Bool.h 196B

12345678910111213141516
  1. #import "Param.h"
  2. @interface Bool : Param
  3. - (instancetype)initWithBOOL:(BOOL)boolValue;
  4. - (BOOL)get;
  5. - (NSNumber *)getValue;
  6. - (BOOL)getWithDefaultValue:(BOOL)value;
  7. - (bool) isFalse;
  8. @end