| 1234567891011121314151617181920212223242526 |
- //
- // CommentFooterView.m
- // AICity
- //
- // Created by 张国栋 on 2025/10/22.
- // Copyright © 2025 wei.z. All rights reserved.
- //
- #import "CommentFooterView.h"
- @implementation CommentFooterView
- /*
- // Only override drawRect: if you perform custom drawing.
- // An empty implementation adversely affects performance during animation.
- - (void)drawRect:(CGRect)rect {
- // Drawing code
- }
- */
- - (IBAction)btnClicked:(id)sender {
- if (self.btnClicked) {
- self.btnClicked();
- }
- }
- @end
|