BottomTabBar.h 516 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // BottomTabBar.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. /**
  10. 视频编辑底栏
  11. */
  12. @protocol BottomTabBarDelegate <NSObject>
  13. - (void)onMusicBtnClicked;
  14. - (void)onTimeBtnClicked;
  15. - (void)onFilterBtnClicked;
  16. - (void)onEffectBtnClicked;
  17. - (void)onTextBtnClicked;
  18. - (void)onPasterBtnClicked;
  19. @end
  20. @interface BottomTabBar : UIView
  21. @property (nonatomic, weak) id<BottomTabBarDelegate> delegate;
  22. @end