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