BBASwitch.h
470 Bytes
//
// BBASwitch.h
// BBAPods
//
// Created by huangjl on 15/4/7.
// Copyright (c) 2015年 Baidu. All rights reserved.
//
#import <UIKit/UIKit.h>
__attribute__ ((deprecated("该类已被废弃,请勿再使用")))
@interface BBASwitch : UIButton
@property(nonatomic, retain) UIImage *onImage;
@property(nonatomic, retain) UIImage *offImage;
@property(nonatomic,getter=isOn) BOOL on;
- (void)setOn:(BOOL)on animated:(BOOL)animated; // does not send action
@end