I'm doing a navigation between views and passing parameters through the segue.
The idea is this:
ViewA - You have a custom control (cell), with a label and an image. This custom cell has its own class called RateCell , which contains the @IBOutlet of its respective controls (Label and Image)
ViewB - It is a tableview view, where each cell has a Label and an image
The idea is that when you click on any cell in the ViewB, the data is passed to the custom ViewA cell, but I do not know how to access the custom control in ViewA, since it does not let me reference it with @IBOutlet because it is a Custom control.
How can I access the ViewA's custom control to insert the data into that control?
I'm starting with the development for swift.