CommentFooterView.h 383 B

12345678910111213141516171819
  1. //
  2. // CommentFooterView.h
  3. // AICity
  4. //
  5. // Created by 张国栋 on 2025/10/22.
  6. // Copyright © 2025 wei.z. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface CommentFooterView : UITableViewHeaderFooterView
  11. @property (weak, nonatomic) IBOutlet UIButton *btnOpen;
  12. @property (copy, nonatomic) void (^btnClicked)(void);
  13. @end
  14. NS_ASSUME_NONNULL_END