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