swift 在blog.chrishannah.me上发布“在UITableView上隐藏额外分隔符”的示例代码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift 在blog.chrishannah.me上发布“在UITableView上隐藏额外分隔符”的示例代码相关的知识,希望对你有一定的参考价值。

import PlaygroundSupport
import UIKit

class DataSource: NSObject, UITableViewDataSource {
    
    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return 5
    }
    
    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
        cell.textLabel?.text = "Hello, world."
        return cell
    }
    
}

let tableView = UITableView(frame: CGRect(x: 0, y: 0, width:300, height: 400))
tableView.register(UITableViewCell.self, forCellReuseIdentifier: "cell")
let dataSource = DataSource()
tableView.dataSource = dataSource
//tableView.tableFooterView = UIView()

PlaygroundPage.current.liveView = tableView
PlaygroundPage.current.needsIndefiniteExecution = true

以上是关于swift 在blog.chrishannah.me上发布“在UITableView上隐藏额外分隔符”的示例代码的主要内容,如果未能解决你的问题,请参考以下文章

swift 教程 swift介绍

我可以在 Swift 3 项目中使用 Swift 2.3 框架吗?

在swift中导入swift链接的objc类

在 Swift 项目中使用 Objective C 类中的 Swift 类

在 Swift 项目中使用 Objective C 类中的 Swift 类

swift中的mutating