swift tableViewCell touch.swift

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift tableViewCell touch.swift相关的知识,希望对你有一定的参考价值。

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        if contentArray[indexPath.row] == numberArray[indexPath.row] {
            let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath)
            cell.textLabel?.text = contentArray[indexPath.row]
            return cell
        } else {
            let cell = tableView.dequeueReusableCell(withIdentifier: "MoreCell", for: indexPath) as? CustomizeTableViewCell
            cell?.contentLabel.text = numberArray[indexPath.row]
            cell?.contentOneLabel.text = "\(numberArray[indexPath.row])內容一"
            cell?.contentTwoLabel.text = "\(numberArray[indexPath.row])內容二"
            return cell!
        }
        
    }

以上是关于swift tableViewCell touch.swift的主要内容,如果未能解决你的问题,请参考以下文章

Swift:如何以编程方式在 TableViewCell 中显示 CollectionView

如何仅在 swift 中重新加载 tableViewCell?

Swift:动态更改 TableViewCell 高度和动态更改 WebView 高度

swift:TableViewCell 在滚动之前不会更新约束

无法在 Swift 中展开和折叠 TableViewCell

Swift - 在点击 TableViewCell 时打开 ViewController