12345678910111213141516171819202122232425262728293031 |
- //
- // SmartBar.h
- // smartRhino
- //
- // Created by niuzhen on 2019/12/14.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "SmartBarModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @protocol SmartBarDelegate;
- @interface SmartBar : UIView
- @property (nonatomic, weak) id<SmartBarDelegate> delegate;
- - (void)downBar;
- - (instancetype)initHeight:(CGFloat)height AddBarArray:(NSArray<SmartBarModel> *)array;
- @end
- @protocol SmartBarDelegate <NSObject>
- @optional
- - (void)didSelectBarWithType:(SmartBarType)type;
- - (void)didSelectBarAddBtnIsShow:(BOOL)isShow;
- - (void)didSelectBarKeyBtnIsShow:(BOOL)isShow;
- @end
- NS_ASSUME_NONNULL_END
|