访问 IBOutletCollection 中的元素
access to elements in IBOutletCollection
我有 IBOutletCollection
个 UIImageView
现在我需要访问其中的图像,我该怎么做?
我只能通过此代码访问第一个和列表
myCollection.first?.image
myCollection.last?.image
我需要访问其他图片
IBOutletCollection
是一个数组,因此要访问它的元素,我们可以使用下标,就像我们访问普通数组中的元素一样。
因此要访问其元素:
myCollection[0].image //or myCollection.first?.image
myCollection[1].image
myCollection[2].image
....
myCollection.last?.image
我有 IBOutletCollection
个 UIImageView
现在我需要访问其中的图像,我该怎么做?
我只能通过此代码访问第一个和列表
myCollection.first?.image
myCollection.last?.image
我需要访问其他图片
IBOutletCollection
是一个数组,因此要访问它的元素,我们可以使用下标,就像我们访问普通数组中的元素一样。
因此要访问其元素:
myCollection[0].image //or myCollection.first?.image
myCollection[1].image
myCollection[2].image
....
myCollection.last?.image