菜鸟教程小白 发表于 2022-12-13 15:21:28

ios - UIpagecontrol 需要从右到左的动画


                                            <p><p>在我的应用程序中使用 UIControlpage。成功加载图像并在页面控件中显示。但我想显示图像动画,如从右到左移动。使用定时器调用页面控制并增加数组计数。</p>

<p>////使用 NSTimer 调用函数来显示动画。</p>

<pre><code>[NSTimer scheduledTimerWithTimeInterval:5.0
                                     target:self
                                 selector:@selector(loadNextController)
                                 userInfo:nil
                                    repeats:YES];

ScrollViewPage = [ initWithFrame:CGRectMake(0, 20, frameX, frameY)];
ScrollViewPage.pagingEnabled = YES;
ScrollViewPage.backgroundColor=;
ScrollViewPage.delegate = self;
ScrollViewPage.backgroundColor = ;
ScrollViewPage.contentSize = CGSizeMake(frameX, frameY);
ScrollViewPage.showsHorizontalScrollIndicator = NO;


ScrollViewPage.pagingEnabled = YES;
pageControl = [ init];
pageControl.frame = CGRectMake(100,self.view.frame.size.height-100,self.view.frame.size.width-200,100);
pageControl.numberOfPages = ;
pageControl.currentPage = 0;

;

for(int i = 0; i &lt; ; i++)
    {

      NSURL *url = ];
      NSData *data = [ initWithContentsOfURL:url];
      UIImage *tmpImage = ;
      _backgroundImageView = [ initWithImage:tmpImage];
         _backgroundImageView.frame = CGRectMake(frameX * i, 0.0, frameX, frameY);
      ;


    }

ScrollViewPage.contentSize = CGSizeMake(frameX*, frameY);
pageControl.backgroundColor=;
;
;
</code></pre>

<p>/////这里调用定时器函数</p>

<pre><code>- (void)loadNextController
{
   pageControl.currentPage = (pageControl.currentPage+1)%self.pageImages.count;
   ScrollViewPage.contentOffset = CGPointMake(pageControl.currentPage * self.view.bounds.size.width, 0);
}
</code></pre>

<p>这里我需要在 uipagecontrol 中显示从左到右的移动。帮帮我..</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>一般来说,您应该始终写下您当前的结果是什么,预期的结果是什么以及您尝试过什么。</p>

<p>我只能猜测您面临的问题是没有动画。
ScrollView 有一个 <code>setContentOffset:animated</code> 方法,您可以使用它来为过渡设置动画。另一种方法是使用 <code>UIView</code> <code>animateWithDuration</code> 并在方法 block 中设置偏移量。</p>

<p>尝试其中一个或两个...</p>

<pre><code>;
</code></pre>

<p>或者</p>

<pre><code>[UIView animateWithDuration:0.2 animations:^{
      ScrollViewPage.contentOffset = CGPointMake(pageControl.currentPage * self.view.bounds.size.width, 0);
}];
</code></pre>

<p><strong>编辑:</strong>循环图像。</p>

<p>要循环图像,您当时实际上只需要 2 个 ScrollView 上的图像。我将向您展示 3 的概念,您可以尝试使用它。</p>

<pre><code>NSArray *allImages;
NSInteger currentIndex = 0;
UIScrollView *scrollView;
UIImageView *imageViews;

- (void)begin {

    scrollView.contentSize = CGSizeMake(scrollView.frame.size.width*3.0, scrollView.frame.size.height); // always have 3 images at the time
    scrollView.contentOffset = CGPointMake(scrollView.frame.size.width, 0.0); // put to center

    for(int i=0; i&lt;3; i++) {
      UIImageView *imageView = [ initWithFrame:CGRectMake(scrollView.frame.size.width*i, 0.0, scrollView.frame.size.width, scrollView.frame.size.height)];
      ;
      imageView = imageView;
    }
    ;
}
- (void)nextImage {
    currentIndex++;
    ;

    scrollView.contentOffset = CGPointZero;
   
}

- (void)layoutForIndex:(NSInteger)index {
    if(allImages.count &gt; 0) { // we need at least one image to do something
      for(int i=0; i&lt;3; i++) {
            // do the circling
            NSInteger imageIndex = index-1+i;
            while(imageIndex &lt; 0) imageIndex+=allImages.count;
            while(imageIndex &gt;= allImages.count) imageIndex-=allImages.count;

            imageViews.image = imageViews;
      }
    }
}
</code></pre>

<p>但一般来说,您甚至不需要 ScrollView 。接下来,您只需在当前 View 旁边添加另一个 ImageView ,然后使用 <code>UIView</code> 动画重新定位两个 ImageView 。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - UIpagecontrol 需要从右到左的动画,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/36004271/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/36004271/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - UIpagecontrol 需要从右到左的动画