swift tableview array 스위프트 테이블뷰 







//

//  MainViewController.swift

//  TableViewAI

//

//  Created by stayfoolish on 20/11/2018.

//  Copyright © 2018 stayfoolish. All rights reserved.

//


import UIKit


class MainViewController: UIViewController, UITableViewDataSource {


    @IBOutlet var tableView: UITableView!

    

    let dataArray = ["1","2","3","4","5","6","7","8","9","10"]

    

    override func viewDidLoad() {

        super.viewDidLoad()


        // Do any additional setup after loading the view.

        self.tableView.dataSource = self

    }

    

    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

        return dataArray.count

    }

    

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

        let cell = tableView.dequeueReusableCell(withIdentifier: "numberCell", for: indexPath)

        

        cell.textLabel?.text = dataArray[indexPath.row]

        

        return cell

    }



}


+ Recent posts