func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let tblContent = tblViewCustomFields[indexPath.row]
let title = tblContent
let custmCell = tableView.dequeueReusableCell(withIdentifier: "Cell") as! CustomCellForLetKnowUs
let customTextCell = tableView.dequeueReusableCell(withIdentifier: "textCell") as! CustomTextCell
custmCell.lblInfo.text = title
if indexPath.row == 7 {
// cellList.append(.withTxtFld)
// tableView.reloadData()
customTextCell.textView.isHidden = true
}
return custmCell
}