Reputation: 1574
I am unable to make an @IBOutlet to my custom class from the elements in my prototype cell. I tried dragging from the element to the class; I let go of the blue line, and nothing happens.
Here are my files if you want to poke around.
Thanks in advance!
Upvotes: 3
Views: 4575
Reputation: 739
sometimes, some xcode tricks 'n hacks work, for example:
Upvotes: 2
Reputation: 2487
Make sure the CustomtableViewCell
class is a Cocoa Touch Class file and not a swift file
Upvotes: 1
Reputation: 13679
This is the issue:
Changing to this should fix this problem:
Upvotes: 12