微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

为什么标签不适合 tableviewcell?

如何解决为什么标签不适合 tableviewcell?

我将 SnapKit 用于 autolaoyut。 这是我的看法:

private func makeIconUI() {
    contentView.addSubview(iconView)
    iconView.snp.makeConstraints { (make) in
        make.leading.equalToSuperview().inset(Dimesion.sidePadding)
        make.height.width.equalTo(19)
        make.top.equalToSuperview().inset(24)
    }
}

private func makeNumberUI() {
    contentView.addSubview(numberLabel)
    numberLabel.backgroundColor = .yellow
    numberLabel.snp.makeConstraints { (make) in
        make.leading.equalTo(iconView.snp.trailing)
        make.top.equalToSuperview().inset(24)
        make.bottom.equalToSuperview()
    }
}

private func makeTitleUI() {
    contentView.addSubview(titleLabel)
    titleLabel.snp.makeConstraints { (make) in
        make.leading.equalTo(numberLabel.snp.trailing)
        make.trailing.equalTo(self.snp.trailing)
        make.top.equalToSuperview()
    }
}

问题是: 黄色标签不完全适合。第二个标签在推动它,但我可以修复它。

enter image description here

解决方法

我很困惑。黄色不完全适合,就像两个标签的顶部不匹配一样?然后删除插入


    private func makeNumberUI() {
        contentView.addSubview(numberLabel)
        numberLabel.backgroundColor = .yellow
        numberLabel.snp.makeConstraints { (make) in
            make.leading.equalTo(iconView.snp.trailing)
            make.top.equalToSuperview()
            make.bottom.equalToSuperview()
        }
    }

如果逻辑是水平的,那么给它一个宽度,如:


        view.addSubview(numberLabel)
        numberLabel.backgroundColor = .yellow
        numberLabel.snp.makeConstraints { (make) in
            make.leading.equalTo(iconView.snp.trailing)
            make.width.equalTo(30)
            make.top.equalToSuperview()
            make.bottom.equalToSuperview()
        }

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。