2
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user