Value of type 'UITableViewCell' has no member 'configure'

I’m working on Chapter 28: The Locations Tab, Create a custom table view call subclass where the code is:

let location = locations[indexPath.row]
cell.configure(for: location)
and getting the following error:
Value of type ‘UITableViewCell’ has no member ‘configure’

I’ve double checked that LocationCell.swift is inherited from: UITableViewCell

From iOS_Apprentice_V9.0.0.epub

Any thoughts?

I have not checked the relevant code but the fact that your error message says:
Value of type ‘UITableViewCell’ has no member ‘configure’ would seem to indicate that you have not set the class for the table view cell prototype in your storyboard to LocationCell, perhaps?