sloeberGJ
sloeberGJ

Reputation: 385

Cannot make outlet in connected custom UITableViewCell class

I've made a custom UITableViewCell Class, I've connected the class to the TableViewCell in the storyboard. It just showed up at the Custom Class menu, where I selected it.

But for some vague reason it doesn't show up in the Assistant Editor under Automatic, so I can't make IBOutlets. I've tried some guides, but they don't work (clean xcode, clean derivativeData, restart macbook).

How to fix this? I'm using xCode 7.2.1 and coding in Swift for iOS.

Upvotes: 7

Views: 3706

Answers (1)

Russell
Russell

Reputation: 5554

in the ViewControllerScene, if you select the cell, you will see the ViewController in the Assistant Editor, but if you select the Content View of the cell, you should see the ViewController and the Custom Cell in the Assistant.

Here's what I see when I select the Cell Select Cell

and here's what I get when I select the Content View Content View

Upvotes: 28

Related Questions