12345678910111213141516171819202122 |
- //
- // CPDFSettingView.h
- // PDFViewer
- //
- // Created by kdanmobile_2 on 2022/12/13.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface PDFHeaderFooterSettingView : UIView
- @property (nonatomic,strong) UILabel *settinigLabel;
- @property (nonatomic,strong) UIButton *addButton;
- @property (nonatomic,strong) UIButton *deleteButton;
- - (void)setText;
- @end
- NS_ASSUME_NONNULL_END
|