91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

祁连县| 连州市| 宾川县| 桐庐县| 张家口市| 新和县| 凤山市| 溆浦县| 尚志市| 岳普湖县| 厦门市| 长海县| 横峰县| 墨脱县| 平泉县| 九江市| 当阳市| 怀集县| 大关县| 娱乐| 鸡西市| 安吉县| 农安县| 余江县| 漳平市| 平定县| 海淀区| 丰顺县| 福安市| 宜川县| 开平市| 耿马| 全南县| 朝阳区| 陇南市| 辰溪县| 穆棱市| 资源县| 黄浦区| 辽中县| 中超|