I have 8 UImageViews that I am adding animations to. I know I can make the animation eight times, but can I use a loop -and maybe interpolation- for it?
UImageView
He
Yup, put the images in an array and loop through the array.
for var i = 0; i < dieImages.count; i++ { dieImages[i].startAnimating() }
Does that help? A little confused about your intentions, but I think this answers your question