// // RASettingActionModel.m // Apex And Drivers // // Created by Jack on 2018/9/12. // Copyright © 2018年 USAI. All rights reserved. // #import "RASettingActionModel.h" @implementation RASettingActionModel - (CGFloat)height { return 60.0f; } - (void)setActive:(BOOL)active{ _active = active; if (self.delegate && [self.delegate respondsToSelector:@selector(refreshUI)]) { [self.delegate refreshUI]; } } @end