gpt4 book ai didi

ios - 以编程方式快速将单元格 textLabel 对齐到左上角

转载 作者:行者123 更新时间:2023-11-28 16:12:09 30 4
gpt4 key购买 nike

我在 swift 中使用部分以编程方式创建了一个 TableView。部分和行的数量将始终相同,因为它们只是显示我从 Firebase 提取的信息。

我想更改其中一个单元格的 textLabel 以对齐到顶部,而不是单元格的中间。我希望所有其他文本标签保持居中。有问题的单元格是第 1 节,第 1 行。

目前看起来像:

enter image description here

我一直在寻找如何做到这一点,很多人都说要做:

cell.textLabel?.numberOfLines = 0
cell.textLabel?.sizeToFit()

但这行不通。我将这段代码放在我的 cellForRowAtIndexPath 方法中。

if indexPath.section == 0 {
if indexPath.row == 0 {
cell.textLabel!.text = "Our review"
} else {
cell.textLabel!.text = film?.Main_Review
cell.textLabel?.numberOfLines = 0 // HERE
cell.textLabel?.sizeToFit() // HERE
}
}

没有任何反应,文本仍然对齐到单元格的中心。

有人知道这样做的简单方法吗?最好不必创建自定义单元格(因为这只需要影响 1 行)?谢谢

更新 - cellForRowAtIndexPath

的所有代码
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

let cell: UITableViewCell = UITableViewCell(style: .Value1, reuseIdentifier: cellId)

cell.selectionStyle = .None
cell.textLabel?.font = UIFont(name: "Verdana", size: 14)
cell.textLabel?.textColor = UIColor.darkGrayColor()
cell.detailTextLabel?.font = UIFont(name: "Verdana", size: 14)


if indexPath.section == 0 {
if indexPath.row == 0 {
cell.textLabel!.text = "Share"
}
} else if indexPath.section == 1 {
if indexPath.row == 0 {
cell.textLabel!.text = "Our review"
} else {
cell.textLabel!.text = film?.Main_Review
cell.textLabel?.numberOfLines = 0
cell.textLabel?.sizeToFit()
}
} else if indexPath.section == 2 {
if indexPath.row == 0 {
cell.textLabel!.text = "UK release date"
cell.detailTextLabel!.text = film?.Date_Released?.capitalizedString
} else if indexPath.row == 1 {
cell.textLabel!.text = "Directed by"
cell.detailTextLabel!.text = film?.Directed_By?.capitalizedString
} else if indexPath.row == 2 {
cell.textLabel!.text = "Running time"
cell.detailTextLabel!.text = film?.Running_Time
} else {
cell.textLabel!.text = "Certificate rating"
cell.detailTextLabel!.text = film?.Certificate_Rating
}
}

return cell

}

最佳答案

cell.textLabel 是 UITableViewCell 中的默认标签。如果您希望您的文本从顶部开始,您应该创建 UITableViewCell 的子类并为此单元格创建您自己的 View 。例如

import Foundation
import UIKit

class ItemCell: UITableViewCell {

var label : UILabel!

override init(style: UITableViewCellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
self.label = UILabel()
self.contentView.addSubview(label)
}

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

override func layoutSubviews() {
super.layoutSubviews()

self.label.frame = CGRectMake(15,10,200,30)
self.label.adjustsFontSizeToFitWidth = true
self.label.textColor = UIColor.greenColor()

}

然后在你的 viewController 中不要忘记像这样使用注册类方法

    self.tableView.dataSource = self
self.tableView.delegate = self
self.tableView.registerClass(ItemCell.self, forCellReuseIdentifier: "cellIdentifier")

在你的 cellForRowAtIndexPath 中

let cell:ItemCell! = tableView.dequeueReusableCellWithIdentifier("cellIdentifier") as? ItemCell

关于ios - 以编程方式快速将单元格 textLabel 对齐到左上角,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39435344/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com