I have 2 sections which is fixed and 3 rows which is fixed.Each row is loaded by a tableviewcell,which means it has 3 tableviewcell. How to load the cellforrowat for each section with each tableviewcell. The 3 tableview cell for as follows:
tableviewcell1:
guard let cell = tableView.dequeueReusableCell(withIdentifier: "AreaHeadderTableViewCell") as? AreaHeadderTableViewCell else {return UITableViewCell()}
return cell
tableviewcell2:
guard let cell = tableView.dequeueReusableCell(withIdentifier: "DetailItemTblCell") as? DetailItemTblCell else {return UITableViewCell()}
return cell
tableviewcell3:
guard let cell = tableView.dequeueReusableCell(withIdentifier: "AreaHeadderTableViewCell") as? AreaHeadderTableViewCell else {return UITableViewCell()}
return cell
How to showcase these 3 tableviewcell for both sections?