override func numberOfSections(in tableView: UITableView) -> Int {
// You need to return minimum one to show the cell inside the tableview
return 1
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
// return the number of rows i...