WFCUGeneralSwitchTableViewCell.h 363 B

1234567891011121314
  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, strong)void (^onSwitch)(BOOL value, void (^)(BOOL success));
  12. @end