| 12345678910111213141516171819 |
- //
- // CommentFooterView.h
- // AICity
- //
- // Created by 张国栋 on 2025/10/22.
- // Copyright © 2025 wei.z. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface CommentFooterView : UITableViewHeaderFooterView
- @property (weak, nonatomic) IBOutlet UIButton *btnOpen;
- @property (copy, nonatomic) void (^btnClicked)(void);
- @end
- NS_ASSUME_NONNULL_END
|