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
Va
The problem is that your cell object is a UITableViewCell and not a NewsTableViewCell. You need to dequeue a NewsTableViewCell that will actually have those properties on it.
Something like:
var cell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as! NewsTableViewCell