BBAMultiTabBarSwitch.h 708 Bytes
//
//  BBAMultiTabBarSwitch.h
//  BBAUIKit
//
//  Created by liyongrui on 2018/12/14.
//

#import <UIKit/UIKit.h>

NS_ASSUME_NONNULL_BEGIN

/**********************************************************************
 *                  BBAMultiTabBarSwitch
 **********************************************************************/
@interface BBAMultiTabBarSwitch : UIButton

@property (nonatomic,strong) UIImageView *switchImage;
@property (nonatomic,strong) UIImage *normalImage;
@property (nonatomic,strong) UIImage *selectedImage;

- (instancetype)initWithNormalImage:(UIImage *)normalImage selectedImage:(UIImage *)selectedImage;
- (void)setTabBarSwitchSelected:(BOOL)isSelected;

@end

NS_ASSUME_NONNULL_END