12345678910111213141516171819202122 |
- //
- // uploadFileRecordTableViewHeadView.h
- // 隐私保护
- //
- // Created by xd h on 2023/11/20.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface uploadFileRecordTableViewHeadView : UIView
- @property(nonatomic,strong) UILabel *titleLabel;//
- @property(nonatomic,strong) UIButton *rightButton;//
- //点击
- @property (nonatomic,copy) void (^didClickButFun)(void);
- @end
- NS_ASSUME_NONNULL_END
|