作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我无法在自定义 View 上使用内容拥抱。我有以下代码:
pillView.setContentHuggingPriority(.required, for: .horizontal)
pillView.setContentCompressionResistancePriority(.required, for: .horizontal)
dateLabel.setContentHuggingPriority(.defaultLow, for: .horizontal)
dateLabel.setContentCompressionResistancePriority(.defaultLow, for: .horizontal)
我将这两个 View 添加到堆栈 View 中:
让 dateStackView = UIStackView(arrangedSubviews: [pillView, dateLabel])
结果是这样的:
LIVE NOW View 应该包含它的内容。它是这样定义的:
final class PillView: UIView {
private enum Constants {
static let radius: CGFloat = 4.0
static let labelInsets = UIEdgeInsets(horizontal: 8.0, vertical: 4.0)
}
enum Config {
case attention
var font: UIFont {
switch self {
case .attention: return Font.caption
}
}
var textColor: UIColor {
switch self {
case .attention: return .white
}
}
var backgroundColor: UIColor {
switch self {
case .attention: return Theme.red100
}
}
}
// MARK: - Properties
private let config: Config
// MARK: - Initializers
init(text: String, config: Config = .attention) {
self.config = config
super.init(frame: .zero)
backgroundColor = config.backgroundColor
clipsToBounds = true
layer.cornerRadius = Constants.radius
let label = UILabel()
label.font = config.font
label.textColor = config.textColor
label.text = text
addSubview(label)
label.translatesAutoresizingMaskIntoConstraints = false
NSLayoutConstraint.activate([
label.topAnchor.constraint(equalTo: topAnchor, constant: Constants.labelInsets.top),
label.bottomAnchor.constraint(equalTo: bottomAnchor, constant: -Constants.labelInsets.bottom),
label.leadingAnchor.constraint(equalTo: leadingAnchor, constant: Constants.labelInsets.left),
label.trailingAnchor.constraint(equalTo: trailingAnchor, constant: -Constants.labelInsets.right)
])
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}
不确定为什么在堆栈 View 中它不会包含内容。有任何想法吗?真的很感激这方面的一些建议。谢谢!
最佳答案
将这些行添加到您的 PillView
init(...)
函数中:
label.setContentHuggingPriority(.required, for: .horizontal)
label.setContentCompressionResistancePriority(.required, for: .horizontal)
然后您不需要为您的 pillView
或 dateLabel
实例设置这些属性中的任何一个。
关于ios - 内容拥抱优先级不适用于 UIStackView 中的自定义 View 和标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65228741/
我是一名优秀的程序员,十分优秀!