YBTabBar.h 332 B

123456789101112131415161718192021
  1. //
  2. // YBTabBar.h
  3. // WaWaJiClient
  4. //
  5. // Created by Rookie on 2017/11/15.
  6. // Copyright © 2017年 zego. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol YBTabBarDelegate <NSObject>
  10. -(void)centerBtnDidClicked;
  11. @end
  12. @interface YBTabBar : UITabBar
  13. @property (nonatomic,weak) id<YBTabBarDelegate> tabbarDelegate;
  14. @end