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