I have 3 IBOutlets, defined as:
- imageView1
- imageView2
- imageView3
I would like to specify each IBOutlet within a loop.
for (index, item) in items {
imageView + index.image = UIImage()
}
It would seem some form of string interpolation is required?