12345678910111213141516171819202122232425262728293031 |
- //
- // PBToolBar.h
- // NgariUIComponents
- //
- // Created by LStar on 2022/1/20.
- //
- #import <UIKit/UIKit.h>
- @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
|