CommentFooterView.m 498 B

1234567891011121314151617181920212223242526
  1. //
  2. // CommentFooterView.m
  3. // AICity
  4. //
  5. // Created by 张国栋 on 2025/10/22.
  6. // Copyright © 2025 wei.z. All rights reserved.
  7. //
  8. #import "CommentFooterView.h"
  9. @implementation CommentFooterView
  10. /*
  11. // Only override drawRect: if you perform custom drawing.
  12. // An empty implementation adversely affects performance during animation.
  13. - (void)drawRect:(CGRect)rect {
  14. // Drawing code
  15. }
  16. */
  17. - (IBAction)btnClicked:(id)sender {
  18. if (self.btnClicked) {
  19. self.btnClicked();
  20. }
  21. }
  22. @end