|
@@ -85,12 +85,12 @@ class TSAILIstCell: TSBaseCollectionCell {
|
|
|
// }()
|
|
|
|
|
|
lazy var titleLab: UILabel = {
|
|
|
- let titleLab = UILabel.createLabel(font: .font(size: 16,weight: .medium),textColor: .fromHex("FFFFFF"),numberOfLines: 0)
|
|
|
+ let titleLab = UILabel.createLabel(font: .font(size: 18,weight: .medium),textColor: .fromHex("FFFFFF"),numberOfLines: 0)
|
|
|
return titleLab
|
|
|
}()
|
|
|
|
|
|
lazy var infoLab: UILabel = {
|
|
|
- let infoLab = UILabel.createLabel(font: .font(size: 12,weight: .regular),textColor: .white.withAlphaComponent(0.8),numberOfLines: 0)
|
|
|
+ let infoLab = UILabel.createLabel(font: .font(size: 14,weight: .regular),textColor: .white.withAlphaComponent(0.8),numberOfLines: 0)
|
|
|
return infoLab
|
|
|
}()
|
|
|
|
|
@@ -119,15 +119,15 @@ class TSAILIstCell: TSBaseCollectionCell {
|
|
|
make.trailing.equalTo(-110)
|
|
|
make.leading.equalTo(leading)
|
|
|
make.bottom.equalTo(-16)
|
|
|
- make.height.equalTo(16)
|
|
|
+ make.height.greaterThanOrEqualTo(16)
|
|
|
}
|
|
|
|
|
|
bgContentView.addSubview(titleLab)
|
|
|
titleLab.snp.makeConstraints { make in
|
|
|
make.trailing.equalTo(-110)
|
|
|
make.leading.equalTo(leading)
|
|
|
- make.bottom.equalTo(infoLab.snp.top).offset(-12)
|
|
|
- make.height.equalTo(18)
|
|
|
+ make.bottom.equalTo(infoLab.snp.top).offset(-8)
|
|
|
+ make.height.greaterThanOrEqualTo(18)
|
|
|
}
|
|
|
|
|
|
bgContentView.addSubview(catPawAnimatedImageView)
|