0

我有这个设置一个图像的代码:

NSArray *imageFilenames = [NSArray arrayWithObjects:@"background iPad retina.png", @"iPad retina send.png", nil];

UIColor *bgColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"background iPad retina.png"]];
scroll1.backgroundColor = bgColor;

如何在模式中设置更多图像(可能来自 NSArray),以便我看到一个图像,然后是另一个图像,然后是第一个图像,然后是第二个图像......

4

1 回答 1

0

虽然我不是 100% 确定,但我认为你不能通过设置 backgroundColor 来做到这一点,因为colorWithPatternImage方法将为整个视图设置重复图像。

也许您应该将图像设置为 different UIView,然后将它们一一添加到滚动条中。

于 2012-07-28T12:53:58.333 回答