0

请帮忙。在列中组织一些图像的最佳方法是什么,以便轻松计算img添加的动画,这取决于已经添加了多少张图片。图片 - http://bit.ly/OBK8xk 非常感谢。抱歉英语不好。

4

1 回答 1

0

您可以使用 for loop.for 例如。动态图像可以通过在数组(imagearray)中获取来实现。然后试试这个代码

static int statvar = 0;
for(int i=0;i<[imagearray count];i++)
{
    UIImageView* imgView = [[UIImageView alloc] initWithFrame:CGRectMake(10, 10+statvar, 50, 50)];
    [imgView  setImage:[UIImage imageNamed:@"arrow.png"]]
    statvar+=55;
    [self.view addsubview:imgView];
}
于 2012-09-01T16:52:39.127 回答