I have a custom UIView class. Inside it I have declared an IBOutlet property for UIImageView.
UIView
IBOutlet
UIImageView
#import
Can you not use the setter for properties, that way you can do what you need when it's actually populated?
@IBOutlet weak var xxx:UIKitClass! { didSet { outletSetup() } }