This commit is contained in:
2025-11-10 19:51:23 +08:00
parent 1dc9560a1f
commit 3eb3a86376
17 changed files with 125 additions and 21 deletions

View File

@@ -59,8 +59,8 @@
}];
[self.arrowView mas_makeConstraints:^(MASConstraintMaker *make) {
make.centerY.equalTo(self.container);
make.right.equalTo(self.container).offset(-12);
make.width.mas_equalTo(8);
make.right.equalTo(self.container).offset(-16);
make.width.mas_equalTo(9);
make.height.mas_equalTo(14);
}];
[self.bottomLine mas_makeConstraints:^(MASConstraintMaker *make) {
@@ -109,11 +109,7 @@
if (!_arrowView) {
_arrowView = [[UIImageView alloc] init];
_arrowView.contentMode = UIViewContentModeScaleAspectFit;
_arrowView.tintColor = [UIColor colorWithHex:0xC0C0C0];
// iOS13+ 使
if (@available(iOS 13.0, *)) {
_arrowView.image = [UIImage systemImageNamed:@"chevron.right"];
}
_arrowView.image = [UIImage imageNamed:@"black_right_arrow"];
}
return _arrowView;
}