Even though I have written the code as given below and In the storyboard , identifier has been set for SortTableViewCell, it is showing throwing an exception :
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'unable to dequeue a cell with identifier SortTableCellID - must register a nib or a class for the identifier or connect a prototype cell in a storyboard'
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "SortTableCellID", for: indexPath) as! SortTableViewCell
cell.sortValues.text = sortArray[indexPath.row]
return cell
}
The code ain't working after the Xcode(Xcode 10 -> Xcode 11) updating to its latest version, it seems to show an error while running the same code.As a newbie to Swift, please somebody help me to sort this out.

