Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 352
sloeberGJ Avatar asked Mar 17 '16 14:03

sloeberGJ


1 Answers

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

like image 153
Russell Avatar answered Nov 10 '22 19:11

Russell