Hi there,
When I'm using an UITableViewCell subclass loaded from a module
First Interface builder cannot auto complete the Class nor the Module in the Identity inspector
Workaround: Type the Class and Module yourself it's working
But the problem is that specific UITableViewCell subclass (still from the Module) contains:
@IBOutlet open weak var progressView: UIProgressView?And IB don't show up that outlet in the Connections inspector.
I've tried with
open class CustomTableViewCell: UITableViewCellpublic class CustomTableViewCell: UITableViewCell@IBOutlet public weak var progressView: UIProgressView?pretty much all the combinations nothing works
Please Help !!!