| 123456789101112131415161718192021222324252627282930313233343536 |
- //
- // 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,
- RASettingTypeAbout = 3,
- RASettingTypeLink = 4
-
- } 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;
- @property (nonatomic,assign,readonly) CGFloat height;
- @end
|