繁体   English   中英

如何正确换行长文本?

[英]How to wrap long text correctly?

在我的应用程序中,用户可以对帖子发表评论。 一切正常,但是在创建长文本时线条不会换行,因此我得到了这个

在此处输入图像描述

numberOfLines设置为 = 0

这是commentCell中设置约束的代码


   let commentLabel: ActiveLabel = {
            let label = ActiveLabel()
            label.font = UIFont.systemFont(ofSize: 13)
            label.numberOfLines = 0

            return label
            }()

  override init(frame: CGRect) {
            super.init(frame: frame)



            addSubview(profileImageView)
            profileImageView.anchor(top: topAnchor, left: leftAnchor, bottom: nil, right: nil, paddingTop: 8, paddingLeft: 8, paddingBottom: 0, paddingRight: 0, width: 40, height: 40)
            profileImageView.layer.cornerRadius = 40 / 2


            addSubview(optionsButton)
            optionsButton.anchor(top: topAnchor, left: nil, bottom: nil, right: rightAnchor, paddingTop: 12, paddingLeft: 0, paddingBottom: 0, paddingRight: 8, width: 20, height: 20)

            addSubview(commentLabel)
            commentLabel.anchor(top: topAnchor, left: profileImageView.rightAnchor, bottom: bottomAnchor, right: optionsButton.leftAnchor, paddingTop: 15, paddingLeft: 5, paddingBottom: 15, paddingRight: 8, width: 0, height: 0)

            addSubview(commentTimeLabel)
        commentTimeLabel.anchor(top: commentLabel.bottomAnchor, left: commentLabel.leftAnchor, bottom: nil, right: nil, paddingTop: 3, paddingLeft: 1, paddingBottom: 0, paddingRight: 0, width: 0, height: 0)



            optionsButton.isEnabled = true

            optionsButton.isUserInteractionEnabled = true

            commentLabel.isUserInteractionEnabled = true
        }

        required init?(coder aDecoder: NSCoder) {
            fatalError("init(coder:) has not been implemented")
        }

这是应该为我调整单元格大小的 CommentViewController 代码,但它没有。 我以前用过这个,所以我不确定我是否遗漏了什么


   func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {


           let frame = CGRect(x: 0, y: 0, width: view.frame.width, height: 50)
           let dummyCell = CommentCell(frame: frame)
           dummyCell.comment = comments[indexPath.item]
           dummyCell.layoutIfNeeded()

           let targetSize = CGSize(width: view.frame.width, height: 1000)
           let estimatedSize = dummyCell.systemLayoutSizeFitting(targetSize)

           let height = max(40 + 8 + 8, estimatedSize.height)
           return CGSize(width: view.frame.width, height: height)
    }


    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat {
        return 15
    }


你需要设置

commentLabel.lineBreakMode = .byWordWrapping

默认情况下,它设置为.byTruncatingTail

此外,如果要将文本限制为特定行数,则可能需要设置.numberOfLines

重新审视这个问题后,问题是我的限制。

commentLabel.anchor

我把它改成

bottom: commentTimeLabel.topAnchor

optionsButton.anchor

底部改为

 bottom: bottomAnchor

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM