| 123456789101112131415161718192021 |
- //
- // YBTabBar.h
- // WaWaJiClient
- //
- // Created by Rookie on 2017/11/15.
- // Copyright © 2017年 zego. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @protocol YBTabBarDelegate <NSObject>
- -(void)centerBtnDidClicked;
- @end
- @interface YBTabBar : UITabBar
- @property (nonatomic,weak) id<YBTabBarDelegate> tabbarDelegate;
- @end
|