这篇文章将为大家详细讲解有关Swift中tableView怎么用,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
创新互联-专业网站定制、快速模板网站建设、高性价比石阡网站开发、企业建站全套包干低至880元,成熟完善的模板库,直接使用。一站式石阡网站制作公司更省心,省钱,快速模板网站建设找我们,业务覆盖石阡地区。费用合理售后完善,十多年实体公司更值得信赖。// 遵守协议的方式,直接在继承的父类后跟,+协议即可
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// 添加tableView的控件
let tableView = UITableView()
tableView.frame = self.view.bounds
self.view.addSubview(tableView)
// 设置数据源,设置数据
tableView.dataSource = self
tableView.delegate = self
}
}
// 相当于OC中的category
extension ViewController : UITableViewDataSource
{
// MARK:- 实现数据源方法
func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return 1
}
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 20
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let ID : String = "Cell"
var cell = tableView.dequeueReusableCellWithIdentifier(ID)
if cell == nil {
cell = UITableViewCell(style: UITableViewCellStyle.Default, reuseIdentifier: ID)
}
cell?.textLabel?.text = "测试数据:\(indexPath.row)"
return cell!
}
}
extension ViewController : UITableViewDelegate
{
// MARK:- 实现代理方法
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
print(indexPath.row)
}
}
// UITableViewDataSource和UITableViewDelegate 可以放在一起
关于“Swift中tableView怎么用”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。
另外有需要云服务器可以了解下创新互联cdcxhl.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。