New to iOS programming, I am getting the following error, I get it for 3 separate items, but solving one will solve them all.
I am getting the following error
Value of type 'UITableViewCell' has no member 'postImageView'
// return how may records in a table override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return self.rssRecordList.count } // return cell override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> NewsTableViewCell { // collect reusable cell let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) // find record for current cell let thisRecord : RssRecord = self.rssRecordList[(indexPath as NSIndexPath).row] // set value for main title and detail tect cell.postImageView.image = UIImage(thisRecord.image) cell.postTitleLabel.text = thisRecord.title cell.authorLabel.text = thisRecord.storyDate // return cell return cell as! NewsTableViewCell }