How to create image slider in iOS?

后端 未结 3 1825
别那么骄傲
别那么骄傲 2021-01-07 02:14

I\'m wondering how to create image slider like those that we are using to look through pictures in different iOS apps, for example in Photos or Airbnb app.

Is it a p

3条回答
  •  感动是毒
    2021-01-07 03:09

    Try this code to create Image Slider Show Using UIScrollView.

    int x=0;
    self.scrollView.pagingEnabled=YES;
    NSArray *image=[[NSArray alloc]initWithObjects:@"1.png",@"2.png",@"3.png", nil];
    for (int i=0; i

提交回复
热议问题