| 1234567891011121314151617181920212223242526272829 |
- //
- // BottomTabBar.h
- // DeviceManageIOSApp
- //
- // Created by rushanting on 2017/5/11.
- // Copyright © 2017年 tencent. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- /**
- 视频编辑底栏
- */
- @protocol BottomTabBarDelegate <NSObject>
- - (void)onMusicBtnClicked;
- - (void)onTimeBtnClicked;
- - (void)onFilterBtnClicked;
- - (void)onEffectBtnClicked;
- - (void)onTextBtnClicked;
- - (void)onPasterBtnClicked;
- @end
- @interface BottomTabBar : UIView
- @property (nonatomic, weak) id<BottomTabBarDelegate> delegate;
- @end
|