0

デバイスが縦向きモードのときに、画像を右に水平にスクロールしようとしています。画像は、タイマーが終了するまで自動的にスクロールする必要があり、シームレスにスクロールする必要があります。どうすればこれを達成できますか?

4

1 に答える 1

1

これを試してみてください。これが役立つことを願っています。

// Create Image's array

    NSMutableArray * imagesArray = [[NSMutableArray alloc]init];
    for (int imageCount = 0; imageCount < YOURCOUNT;imageCount++)
     {
       [imagesArray addObject:[UIImage imageNamed:@"localImagePath%d.png",imageCount]];
     }
// Create ScrollView    

    UIScrollView * scrollview = [[UIScrollView alloc]initWithFrame:CGRectMake(0.0,0.0,320.0,480.0)];
    scrollview.contentSize = CGSizeMake(scrollview.frame.size.width * YOURCOUNT,scrollview.frame.size.height);

// Add those image's to the scrollview 

    CGFloat xPos = 0.0;
    for (UIImage * image in imagesArray) {
     @autoreleasepool {
      UIImageView * imageview = [[UIImageView alloc]initWithImage:image];
      imageview.frame = CGRectMake(xPos, 0.0,scrollview.frame.size.width,scrollview.frame.size.height);
                    [scrollview addSubview:imageview];
                    xPos += scrollview.frame.size.width;
      }
    }

    [self.view addSubview:scrollview];

// Animate to the Right

    [UIView animateWithDuration:10.0 delay:0 options:UIViewAnimationTransitionNone
                             animations:^{
                                 [scrollview setContentOffset:CGPointMake(scrollview.contentSize.width - scrollview.frame.size.width,0.0) animated:NO];
                             }
                             completion:^(BOOL finished) {
                                 NSLog(@"Finished");
                             }];
于 2013-03-28T03:37:05.780 に答える