react-native-navigation的迁移库

RNNSideMenuOptions.h 349B

123456789101112131415
  1. #import <Foundation/Foundation.h>
  2. @interface RNNSideMenuOptions : NSObject
  3. @property (nonatomic, strong) NSNumber* leftSideVisible;
  4. @property (nonatomic, strong) NSNumber* rightSideVisible;
  5. -(instancetype)init;
  6. -(instancetype)initWithDict:(NSDictionary *)sideMenuOptions;
  7. -(void)mergeWith:(NSDictionary*)otherOptions;
  8. -(void)resetOptions;
  9. @end