簡體   English   中英

如何根據標簽的內容在UItableView中適合

[英]How to fit label according to its content in UItableView

我有tableview並且必須在單元格中顯示產品

產品在indexpath處可以是單個或多個

例如:

 ["Burger","SandWitch"]

所以我需要根據tableview中的文本修復標簽。

它不起作用檢查我的截圖

我希望單元格高度應根據標簽的內容

檢查屏幕截圖文本在標簽中是否很大,因此無法在單元格中修復

在此處輸入圖片說明

如何實現呢?

使用此功能,您可以根據文本設置標簽

 func heightForView(text:String, #font:UIFont, #width:CGFloat) -> CGFloat{
        let label:UILabel = UILabel(frame: CGRectMake(0, 0, width, CGFloat.max))
        label.numberOfLines = 0
        label.lineBreakMode = NSLineBreakMode.ByWordWrapping
        label.font = font
        label.text = text

        label.sizeToFit()
        return label.frame.height
    }

    let font = UIFont(name: "Helvetica", size: 20.0)

    var height = heightForView("This is just a load of text", font: font, width: 100.0)

最簡單的解決方案:Object-C

tableView.rowHeight = UITableViewAutomaticDimension;
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [[UITableViewCell alloc] init];
    cell.textLabel.text = @"text";
    cell.textLabel.numberOfLines = 0;
    return cell;
}

也許您需要這樣的東西。 雨燕3。

class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {

    let tableView = UITableView()

    override func viewDidLoad() {
        super.viewDidLoad()

        tableView.delegate = self
        tableView.dataSource = self
        tableView.rowHeight = UITableViewAutomaticDimension
        tableView.estimatedRowHeight = 50
        tableView.frame = view.bounds
        view.addSubview(tableView)
    }    

    func numberOfSections(in tableView: UITableView) -> Int {
        return 1
    }

    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return 5
    }

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let identifier = "some text ;)"
        let cell: CustomTableViewCell

        if let cel = tableView.dequeueReusableCell(withIdentifier: identifier) as? CustomTableViewCell {
            cell = cel
        } else {
            cell = CustomTableViewCell(style: .default, reuseIdentifier: identifier)
        }

        cell.labelValue = "what u want"

        return cell
    }
}

並且必須子類化UITableViewCell:

class CustomTableViewCell: UITableViewCell {

    var labelValue: String? {
        didSet { update() }
    }
    private let label = UILabel()

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

    override init(style: UITableViewCellStyle, reuseIdentifier: String?) {
        super.init(style: style, reuseIdentifier: reuseIdentifier)
        install()
    }

    private func install() {
        let padding: CGFloat = 6
        label.textColor = .black
        label.numberOfLines = 5
        //label.font = Fonts.Default(.Normal).getFont(17, forDifferentDevice: false)
        label.adjustsFontSizeToFitWidth = true
        label.minimumScaleFactor = 0.7
        label.lineBreakMode = .byTruncatingTail
        label.translatesAutoresizingMaskIntoConstraints = false
        contentView.addSubview(label)

        let cnt1 = NSLayoutConstraint(item: label, attribute: .leading, relatedBy: .equal, toItem: contentView, attribute: .leading, multiplier: 1, constant: padding)
        let cnt2 = NSLayoutConstraint(item: contentView, attribute: .trailing, relatedBy: .equal, toItem: label, attribute: .trailing, multiplier: 1, constant: padding)
        let cnt3 = NSLayoutConstraint(item: label, attribute: .top, relatedBy: .equal, toItem: contentView, attribute: .top, multiplier: 1, constant: padding)
        let cnt4 = NSLayoutConstraint(item: contentView, attribute: .bottom, relatedBy: .equal, toItem: label, attribute: .bottom, multiplier: 1, constant: padding)
        contentView.addConstraints([cnt1, cnt2, cnt3, cnt4])
    }

    private func update() {
        label.text = labelValue
    }

}

heightForRowAt使用NSAttributedString計算行的高度:

func tableView(tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
     let attString = NSAttributedString(string:"YOUR TEXT", attributes: [NSFontAttributeName: UIFont.systemFontOfSize(15.0)])
     var r: CGRect = attString.boundingRectWithSize(CGSizeMake(self.tableView.bounds.size.width, CGFLOAT_MAX), options: .UsesLineFragmentOrigin, context: nil)

     return r.size.height
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM