// // MyTabBar.h // CustomTabbarViewController // // Created by duanshengwu on 2019/7/11. // Copyright © 2019 D-James. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @protocol MyTabBarDelegate -(void)tabbarClickButton:(NSInteger)index; @end @interface MyTabBar : UITabBar @property (nonatomic ,assign) NSInteger coutn; @property (nonatomic ,assign) BOOL buttonSelectON; @property (nonatomic,weak) id myTabBarDelegate; @end NS_ASSUME_NONNULL_END