TCBottomTabBar.h 494 B

123456789101112131415161718192021222324252627
  1. //
  2. // TCBottomTabBar.h
  3. // DeviceManageIOSApp
  4. //
  5. // Created by rushanting on 2017/5/11.
  6. // Copyright © 2017年 tencent. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol TCBottomTabBarDelegate <NSObject>
  10. - (void)onCutBtnClicked;
  11. - (void)onFilterBtnClicked;
  12. - (void)onMusicBtnClicked;
  13. - (void)onTextBtnClicked;
  14. - (void)onEffectBtnClicked;
  15. - (void)onTimeBtnClicked;
  16. @end
  17. @interface TCBottomTabBar : UIView
  18. @property (nonatomic, weak) id<TCBottomTabBarDelegate> delegate;
  19. @end