How can i change the page on clicking the dots of UIPageControl

前端 未结 4 1480
太阳男子
太阳男子 2020-12-29 18:29

Here I have a pagecontrol which works good but on clicking on dot it doesn\'t change the page so please help in the function of changepage:

- (void)viewDidLo         


        
相关标签:
4条回答
  • 2020-12-29 18:51

    You can create one event change page:

    - (IBAction)changePage:(id)sender {
        UIPageControl *pager=sender;
        int page = pager.currentPage;
        CGRect frame = imageGrid_scrollView.frame;
        frame.origin.x = frame.size.width * page;
        frame.origin.y = 0;
        [imageGrid_scrollView scrollRectToVisible:frame animated:YES];
    }
    

    Bind it to Pagecontrol's value changed event.

    0 讨论(0)
  • 2020-12-29 18:54

    Just to complete Banker Mittal's answer, the easiest way to do it in swift is to scroll the wanted rect to visible. You don't have to take care of "left" and "right" scrolling because iOS itself realizes which dot you tapped so you can just scroll to the correct frame:

    private func moveScrollViewToCurrentPage() {
    
     //You can use your UICollectionView variable too instead of my scrollview variable
                self.scrollView
                    .scrollRectToVisible(CGRect(
                        x: Int(self.scrollView.frame.size.width) * self.pager.currentPage,
                        y: 0,
                         width:Int(self.scrollView.frame.size.width),
                        height: Int(self.scrollView.frame.size.height)),
                                         animated: true)
    
        }
    
    0 讨论(0)
  • 2020-12-29 19:06

    This is very useful for pagecontrol dots click action change page index for swift 3 and swift 4 .

    @IBAction func pageControlSelectionAction(_ sender: UIPageControl) {
        let page: Int? = sender.currentPage
        var frame: CGRect = self.yourcollectionview.frame
        frame.origin.x = frame.size.width * CGFloat(page ?? 0)
        frame.origin.y = 0
        self.yourcollectionview.scrollRectToVisible(frame, animated: true)
    }
    
    0 讨论(0)
  • 2020-12-29 19:10

    This is a Swift 2 Solution for UICollectionView. Clicking the UIPageControl's dots moves your current view to the left or to the right.

    // Define bounds
    private var currentIndex:Int = 0
    private let maxLimit = 25
    private let minLimit = 0
    
    // Define @IBAction from UIPageControl
    @IBAction func moveViewLeftRight(sender: UIPageControl) {
        // Move to Right
        if currentIndex < maxLimit && sender.currentPage > currentIndex {
            currentIndex++
            self.collectionView.scrollToItemAtIndexPath(NSIndexPath(forItem: currentIndex, inSection: 0), atScrollPosition: .Right, animated: true)
        // Move to Left
        } else if currentIndex > minLimit {
            currentIndex--
            self.collectionView.scrollToItemAtIndexPath(NSIndexPath(forItem: currentIndex, inSection: 0), atScrollPosition: .Left, animated: true)
        }
    }
    
    0 讨论(0)
提交回复
热议问题