LoginSwitchCell.h 518 B

1234567891011121314151617181920212223242526
  1. //
  2. // LoginSwitchCell.h
  3. // RA Image
  4. //
  5. // Created by Jack on 2017/4/27.
  6. // Copyright © 2017年 USAI. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol LoginSwitchDelegate <NSObject>
  10. @optional
  11. - (void)switchButton:(UISwitch *)switchBtn valueChange:(BOOL)value;
  12. @end
  13. @interface LoginSwitchCell : UITableViewCell
  14. @property (strong, nonatomic) IBOutlet UILabel *msgLabel;
  15. @property (strong, nonatomic) IBOutlet UISwitch *stateSwitch;
  16. @property (nonatomic,weak) id<LoginSwitchDelegate> delegate;
  17. @end