修改举报和UI

This commit is contained in:
2026-02-02 17:07:46 +08:00
parent 0ac9030f80
commit 2b75ad90fb
5 changed files with 228 additions and 11 deletions

View File

@@ -103,7 +103,7 @@
if (!_actionButton) {
_actionButton = [UIButton buttonWithType:UIButtonTypeCustom];
_actionButton.titleLabel.font = [UIFont systemFontOfSize:13];
[_actionButton setTitleColor:[UIColor secondaryLabelColor]
[_actionButton setTitleColor:[UIColor whiteColor]
forState:UIControlStateNormal];
_actionButton.tintColor = [UIColor secondaryLabelColor];

View File

@@ -213,7 +213,7 @@
_replyButton = [UIButton buttonWithType:UIButtonTypeCustom];
_replyButton.titleLabel.font = [UIFont systemFontOfSize:11];
[_replyButton setTitle:@"回复" forState:UIControlStateNormal];
[_replyButton setTitleColor:[UIColor secondaryLabelColor] forState:UIControlStateNormal];
[_replyButton setTitleColor:[UIColor colorWithHex:0x9F9F9F] forState:UIControlStateNormal];
[_replyButton addTarget:self
action:@selector(replyButtonTapped)
forControlEvents:UIControlEventTouchUpInside];