PDFSettingView.h 398 B

1234567891011121314151617181920212223
  1. //
  2. // CPDFSettingView.h
  3. // PDFViewer
  4. //
  5. // Created by kdanmobile_2 on 2022/12/13.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "Masonry.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface PDFSettingView : UIView
  11. @property (nonatomic,strong) UILabel *settinigLabel;
  12. @property (nonatomic,strong) UIButton *addButton;
  13. @property (nonatomic,strong) UIButton *deleteButton;
  14. - (void)setText;
  15. @end
  16. NS_ASSUME_NONNULL_END