// // PBToolBar.h // NgariUIComponents // // Created by LStar on 2022/1/20. // #import @interface PBToolBar : UIView @property(nonatomic, strong) UIButton *previousButton; @property( nonatomic, strong) UIButton *nextButton; @property(nonatomic, strong) UIButton *doneButton; ///上一个 @property (nonatomic,copy) void (^previousAction)(PBToolBar *toolBar); ///下一个 @property (nonatomic,copy) void (^nextAction)(PBToolBar *toolBar); ///完成 @property (nonatomic,copy) void (^doneAction)(PBToolBar *toolBar); @end @interface UIView (NDToolbarAddition) @property (readonly, nonatomic) PBToolBar *keyboardToolbar; @end