| 1234567891011121314151617181920212223242526 |
- //
- // LoginSwitchCell.h
- // RA Image
- //
- // Created by Jack on 2017/4/27.
- // Copyright © 2017年 USAI. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @protocol LoginSwitchDelegate <NSObject>
- @optional
- - (void)switchButton:(UISwitch *)switchBtn valueChange:(BOOL)value;
- @end
- @interface LoginSwitchCell : UITableViewCell
- @property (strong, nonatomic) IBOutlet UILabel *msgLabel;
- @property (strong, nonatomic) IBOutlet UISwitch *stateSwitch;
- @property (nonatomic,weak) id<LoginSwitchDelegate> delegate;
- @end
|