我创建了一个 UIScrollView,其中包含多个图像的分页,每个“页面”有 1 个图像,我想知道是否有任何方法可以将图像彼此区分开来?外汇。当第一张图片显示时,我会有一个按钮将 UILabel 设置为“1”,而当第二张图片显示时,同一个按钮会将相同的 UILabel 设置为“2”。
这是我的代码:
pictures = [NSArray arrayWithObjects: [UIImage imageNamed:@"AND.png"], [UIImage imageNamed:@"ALB.png"], nil];
for (int i = 0; i < pictures.count; i++) {
CGRect frame;
frame.origin.x = 135 + (self.scrollViewQuiz.frame.size.width * i);
frame.origin.y = 40;
frame.size = CGSizeMake(50, 50);
UIImageView *subview = [[UIImageView alloc] initWithFrame:frame];
subview.image = [pictures objectAtIndex:i];
[self.scrollViewQuiz addSubview:subview];
}
self.scrollViewQuiz.contentSize = CGSizeMake(self.scrollViewQuiz.frame.size.width * pictures.count, self.scrollViewQuiz.frame.size.height);