网创优客建站品牌官网
为成都网站建设公司企业提供高品质网站建设
热线:028-86922220
成都专业网站建设公司

定制建站费用3500元

符合中小企业对网站设计、功能常规化式的企业展示型网站建设

成都品牌网站建设

品牌网站建设费用6000元

本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...

成都商城网站建设

商城网站建设费用8000元

商城网站建设因基本功能的需求不同费用上面也有很大的差别...

成都微信网站建设

手机微信网站建站3000元

手机微信网站开发、微信官网、微信商城网站...

建站知识

当前位置:首页 > 建站知识

Swift中tableView怎么用

这篇文章将为大家详细讲解有关Swift中tableView怎么用,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。

公司专注于为企业提供网站建设、成都做网站、微信公众号开发、商城开发微信小程序开发,软件按需求定制设计等一站式互联网企业服务。凭借多年丰富的经验,我们会仔细了解各客户的需求而做出多方面的分析、设计、整合,为客户设计出具风格及创意性的商业解决方案,创新互联更提供一系列网站制作和网站推广的服务。

// 遵守协议的方式,直接在继承的父类后跟,+协议即可

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怎么用”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。


分享标题:Swift中tableView怎么用
网站URL:http://bjjierui.cn/article/ghgdii.html

其他资讯