All descendants of my specific class are to have a UILabel instance variable. So in my parent class I have var label: UILabel. I want to have it in
I realize that this question was posted a while ago, but since I just struggled with the same issue and finally came up with a solution, I figured I would still post my findings...
I understand the problem to be as follows (at least that's the one I solved):
How to have class A inherit from class B, with each class having its own XIB file with the some common IBOutlet properties? The goal being to be able to have the super class handle the actions related to the IBOutlets that are common to its subclass(es), while still being able to use Interface Builder to design the interface for the subclass(es).*
In order to do so: