BBATableViewCellWithSwitch.h
502 Bytes
//
// BBATableViewCellWithSwitch.h
// BBAComs
//
// Created by Xiong Feng on 15/6/23.
//
//
#import <UIKit/UIKit.h>
__attribute__ ((deprecated("该类已被废弃,请勿再使用")))
@interface BBATableViewCellWithSwitch : UITableViewCell
@property (nonatomic, getter=isSwitchEnabled) BOOL switchEnabled;
@property (nonatomic, getter=isSwitchOn) BOOL switchOn;
@property (nonatomic, getter=isSynchronizing) BOOL synchronizing;
@property (nonatomic, copy) void(^didFlipSwitch)(BOOL isOn);
@end