IOS(Swift)

Custom TableView

----___<<<<< 2021. 1. 27. 04:35

 간단한 Custom TableView를 만드는 방법입니다.

 

 

class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {
@IBOutlet var tableView : UITableView!
let myData = ["1", "2", "3", "4", "5"]
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
let nib = UINib(nibName: "DemoTableViewCell", bundle: nil)
tableView.register(nib, forCellReuseIdentifier: "DemoTableViewCell")
tableView.delegate = self
tableView.dataSource = self
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return myData.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "DemoTableViewCell", for: indexPath) as! DemoTableViewCell
cell.myLabel.text = myData[indexPath.row]
cell.myImageView.backgroundColor = .red
return cell
}
}
class DemoTableViewCell: UITableViewCell {
@IBOutlet var myLabel: UILabel!
@IBOutlet var myImageView : UIImageView!
override func awakeFromNib() {
super.awakeFromNib()
}
override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
}
}

 

 

'IOS(Swift)' 카테고리의 다른 글

Ios 화면터치 keyboard dismiss  (0) 2021.01.28
IOS Firebase Realtime Database List get data  (0) 2021.01.27
IOS 앱 런칭을 위한 사이즈  (0) 2021.01.24
IOS Webview  (0) 2021.01.19
Swift CollectionView  (0) 2021.01.03