| 123456789101112131415161718192021 |
- //
- // RASettingSwitchModel.m
- // Apex And Drivers
- //
- // Created by Jack on 2018/9/12.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import "RASettingSwitchModel.h"
- @implementation RASettingSwitchModel
- - (void)setSwitchValue:(BOOL)switchValue {
- _switchValue = switchValue;
-
- if (self.delegate && [self.delegate respondsToSelector:@selector(refreshUI)]) {
- [self.delegate refreshUI];
- }
- }
- @end
|