| 1234567891011121314151617181920212223242526272829303132 |
- //
- // RASettingBaseModel.h
- // Apex And Drivers
- //
- // Created by Jack on 2018/9/12.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- typedef enum {
-
- RASettingTypeOption = 0,
- RASettingTypeSwitch = 1,
- RASettingTypeAction = 2
-
- } RASettingType;
- @protocol RASettingModelDelegate <NSObject>
- @optional
- - (void)refreshUI;
- @end
- @interface RASettingBaseModel : NSObject
- @property (nonatomic,assign) RASettingType type;
- @property (nonatomic,copy) NSString *title;
- @property (nonatomic,weak) id<RASettingModelDelegate> delegate;
- @end
|