WFCUGeneralSwitchTableViewCell.h 474 B

1234567891011121314151617
  1. //
  2. // SwitchTableViewCell.h
  3. // WildFireChat
  4. //
  5. // Created by heavyrain lee on 27/12/2017.
  6. // Copyright © 2017 WildFireChat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface WFCUGeneralSwitchTableViewCell : UITableViewCell
  10. @property(nonatomic, assign)BOOL on;
  11. @property(nonatomic, assign)int type;
  12. @property(nonatomic, strong)void (^onSwitch)(BOOL value, int type, void (^handleBlock)(BOOL success));
  13. @property(nonatomic, strong)UISwitch *valueSwitch;
  14. @end