中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Swift中tableView怎么用

發布時間:2021-10-21 10:25:15 來源:億速云 閱讀:119 作者:小新 欄目:移動開發

這篇文章將為大家詳細講解有關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怎么用”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

襄城县| 织金县| 彩票| 长顺县| 仁化县| 竹溪县| 陵川县| 赤水市| 邢台县| 罗定市| 安顺市| 四子王旗| 高安市| 双流县| 乳源| 台湾省| 大厂| 洛隆县| 辽中县| 金坛市| 建始县| 内黄县| 龙江县| 托克托县| 泗洪县| 新民市| 安新县| 临洮县| 旬邑县| 保靖县| 曲沃县| 合阳县| 盐城市| 青海省| 睢宁县| 广东省| 应用必备| 紫金县| 长白| 延寿县| 海阳市|