PDFHeaderFooterTextTableView.h 643 B

123456789101112131415161718192021222324252627
  1. //
  2. // CPDFHeaderFooterTextTableView.h
  3. // PDFViewer
  4. //
  5. // Created by kdanmobile_2 on 2022/11/25.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "Masonry.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface PDFHeaderFooterTextTableView : UIView
  11. @property (retain, nonatomic) IBOutlet UILabel *titleView;
  12. @property (retain, nonatomic) IBOutlet UIButton *okBtn;
  13. @property (retain, nonatomic) IBOutlet UITableView *tableView;
  14. //@property (nonatomic,strong) UITableView *tableView;
  15. //@property (nonatomic,strong) UILabel *titleView;
  16. //@property (nonatomic,strong) UIButton *okBtn;
  17. - (instancetype)initWithTitleName:(NSString *)titleName;
  18. @end
  19. NS_ASSUME_NONNULL_END