I have a class:
class ListOfEventsController: UIViewController, UITableViewDataSource, UITableViewDelegate {
and contains the function:
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("CELL") as! SingleEventCell
and when I run it - it causes an error that says
fatal error: unexpectedly found nil while unwrapping an Optional value

but when I go to my story, I see:

and when I click CELL, I see in its properties:

as well as:

so the ids for are CELLconfigured, but I still get this error.
What else can I do?
source
share