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

时间:2015-06-05 20:26:39

标签: uitableview swift

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
}

我想将日,小时,分钟,秒放入新的一行。是否有可能或应该为它创建另一行。

1 个答案:

答案 0 :(得分:1)

您应该创建自定义UITableViewCell

  1. 为其添加标签并将其叠加在另一个
  2. 之下
  3. 或者拥有UITextView并在新行中显示每个
  4. 我个人会选择第一个选项。