亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

庆元县| 普兰店市| 北碚区| 沧州市| 清远市| 明水县| 定安县| 宜阳县| 宜州市| 玛纳斯县| 九江市| 怀化市| 延川县| 乐东| 延边| 辽源市| 桦南县| 商河县| 新巴尔虎右旗| 师宗县| 普定县| 建阳市| 平陆县| 沙湾县| 项城市| 萍乡市| 咸阳市| 洛隆县| 松溪县| 昭通市| 磴口县| 南宁市| 张家川| 奉节县| 嫩江县| 沙田区| 大冶市| 增城市| 峨山| 彩票| 太仆寺旗|