请参考 https://github.com/nicklockwood/SwipeView 这个示例和此处的 ExampleViewController.m 文件将显示普通数组,此处您将用图像数组替换数组
也许这会对某人有所帮助。
CGRect screen = [[UIScreen mainScreen] bounds];
CGFloat width = CGRectGetWidth(screen);
CGFloat height = CGRectGetHeight(screen);
CGSize mxSize = CGSizeMake( [imgesArry count]*width , height-114);
[scrlView setContentSize : mxSize];
self.customView.translatesAutoresizingMaskIntoConstraints =YES;
self.customView.frame = CGRectMake(0, 0, mxSize.width, mxSize.height);
int incX = 0 ;
for( int i = 0; i < [imgesArry count]; i++)
{
UIImageView *imagView = [[UIImageView alloc]initWithFrame : CGRectMake(incX,0,width ,height-114)];
imagView.image = [UIImage imageNamed:[NSString stringWithFormat:@"%@",[imgesArry objectAtIndex:i]]];
[self.customView addSubview:imagView];
incX+= width;
}
[scrlView setContentOffset:CGPointMake(0, 0)];
获取屏幕的屏幕大小并乘以数组计数,以便我们获得所需的最大宽度,然后使用 for 循环添加我们需要的相同名称的 imageview。