The above screenshot shows the assistant editor to my view controller displayed.
I want to make an IBOutletCollection
for the 'artist' labels and link them to the specific title but I'm unable to do so.
The above screenshot shows the assistant editor to my view controller displayed.
I want to make an IBOutletCollection
for the 'artist' labels and link them to the specific title but I'm unable to do so.
Use IBOutletCollection's equivalent in swift as follows:
@IBOutlet var labelsArray: [UILabel]?
Connect all labels to the above property.