123456789101112131415161718192021222324252627 |
- //
- // CPDFHeaderFooterTextTableView.h
- // PDFViewer
- //
- // Created by kdanmobile_2 on 2022/11/25.
- //
- #import <UIKit/UIKit.h>
- #import "Masonry.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface PDFHeaderFooterTextTableView : UIView
- @property (retain, nonatomic) IBOutlet UILabel *titleView;
- @property (retain, nonatomic) IBOutlet UIButton *okBtn;
- @property (retain, nonatomic) IBOutlet UITableView *tableView;
- //@property (nonatomic,strong) UITableView *tableView;
- //@property (nonatomic,strong) UILabel *titleView;
- //@property (nonatomic,strong) UIButton *okBtn;
- - (instancetype)initWithTitleName:(NSString *)titleName;
- @end
- NS_ASSUME_NONNULL_END
|