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
}
我想将日,小时,分钟,秒放入新的一行。是否有可能或应该为它创建另一行。
答案 0 :(得分:1)
您应该创建自定义UITableViewCell
和
UITextView
并在新行中显示每个我个人会选择第一个选项。