gpt4 book ai didi

uitableview - 是否可以在 UITableView (Swift) 中的一行中添加 2 行

转载 作者:行者123 更新时间:2023-11-30 10:14:57 25 4
gpt4 key购买 nike

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int{
return titleList.count
}

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath)->UITableViewCell {
let cell = UITableViewCell(style: UITableViewCellStyle.Default, reuseIdentifier: "Cell")
cell.textLabel?.text = ("\(titleList[indexPath.row]) - \(timeDayList[indexPath.row]):\(timeHourList[indexPath.row]):\(timeMinuteList[indexPath.row]):\(timeSecondList[indexPath.row])")
return cell
}

我想将日、小时、分钟、秒放入新行中。是否可能或者我应该为其创建另一行。

最佳答案

您应该创建一个自定义UITableViewCell

  1. 向其添加标签并将它们一个接一个地堆叠
  2. 或者有一个 UITextView 并在新行中显示它们

我个人会选择第一个选项。

关于uitableview - 是否可以在 UITableView (Swift) 中的一行中添加 2 行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30675277/

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