You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

29 lines
515 B

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