我有几个要动态管理的 UIImageView 实例。我想将每个加载到一个可变数组中,然后设置每个实例的 animationImages 属性。我的问题:如何将 UIImageViews 加载到可变数组中,然后如何动态设置属性?以下是我创建动画对象的方法:
for (int i = 1; i <= 20; i++) {[myAnimation addObject:[UIImage imageNamed:
[NSString stringWithFormat:@"frame-%i.png", i]]];
}
这是我添加对象的方式(非动态):
NSMutableArray *collection = [[NSMutableArray alloc]initWithObjects:imageView1,imageView2,...nil];
我不确定如何设置属性。我认为它应该类似于以下内容:
for (id xxx in collection) {
xxx.animationImages=someAnimation;
}