CPDFHeaderFooterTextTableView.h 460 B

1234567891011121314151617181920212223
  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 CPDFHeaderFooterTextTableView : UIView
  11. @property (nonatomic,strong) UITableView *tableView;
  12. @property (nonatomic,strong) UILabel *titleView;
  13. @property (nonatomic,strong) UIButton *okBtn;
  14. - (instancetype)initWithTitleName:(NSString *)titleName;
  15. @end
  16. NS_ASSUME_NONNULL_END