RASettingSwitchModel.m 429 B

123456789101112131415161718192021
  1. //
  2. // RASettingSwitchModel.m
  3. // Apex And Drivers
  4. //
  5. // Created by Jack on 2018/9/12.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #import "RASettingSwitchModel.h"
  9. @implementation RASettingSwitchModel
  10. - (void)setSwitchValue:(BOOL)switchValue {
  11. _switchValue = switchValue;
  12. if (self.delegate && [self.delegate respondsToSelector:@selector(refreshUI)]) {
  13. [self.delegate refreshUI];
  14. }
  15. }
  16. @end