У меня есть базовый uitableview с 2 UITableViewCell. Я пытаюсь заполнить первую ячейку array1.count, а вторую - array2.count, но я не знаю как, это мой код:
override func numberOfSections(in tableView: UITableView) -> Int {
return 1
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
var value: Int = 0
if(section == 0){
value = 1
}else if(section == 2){
value = 5
}
return value
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
if indexPath.row == 0 {
let cell = tableView.dequeueReusableCell(withIdentifier: Storyboard.cell1, for: indexPath) as! Cell1
cell.lbl_cell1.text = "Subject"
cell.selectionStyle = .none
return cell
} else if indexPath.row == 1 {
let cell = tableView.dequeueReusableCell(withIdentifier: Storyboard.cell2, for: indexPath) as! Cell2
cell.lbl_cell2.text = "Lorem Ipsum es simplemente el texto de relleno de las imprentas y archivos de texto. Lorem Ipsum ha sido el texto de relleno estándar de las industrias desde el año 1500, cuando un impresor (N. del T. persona que se dedica a la imprenta) desconocido usó una galería de textos y los mezcló de tal manera que logró hacer un libro de textos especimen."
cell.selectionStyle = .none
return cell
}
return UITableViewCell()
}
Моя ошибка в том, что я всегда получаю 1 значение в каждой ячейке. Все, что мне нужно, это
Ячейка 1 Математическая ячейка 2 a, b, c, d, e, f, g, h .....
Заранее спасибо