swift tableview 기본 data array
//
// MainViewController.swift
// ai 11
//
// Created by stayfoolish on 2018. 9. 20..
// Copyright © 2018년 stayfoolish. All rights reserved.
//
import UIKit
class MainViewController: UIViewController , UITableViewDataSource {
@IBOutlet weak var tableView: UITableView!
let dataArray = ["1","2","3","4","5","6","7","8","9","10",]
override func viewDidLoad() {
super.viewDidLoad()
self.tableView.dataSource = self
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return self.dataArray.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "numberCell", for: indexPath)
cell.textLabel?.text = self.dataArray[indexPath.row]
return cell
}
}
'Swift > 기초&문법' 카테고리의 다른 글
swift tableView cell 선택했을 때 화면 이동 스위프트 테이블뷰 (1) | 2018.09.21 |
---|---|
swift custom tableview 스위프트 커스텀 테이블뷰 (0) | 2018.09.20 |
swift 스위프트 화면 이동 modal push (0) | 2018.09.19 |
스위프트 swift 인스턴스 생성 소멸 (0) | 2018.09.04 |
스위프트 swift 상속 (0) | 2018.09.03 |