let cell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as CustomCell cell.name.text = table_data[indexPath.section].data[indexPath.row] cell.index.text = String(indexPath.row) return cell } func tableView(tableView: UITableView, numberOfRowsInSection section: In...