Questions tagged [pagecontrol]
77 questions
28
votes
1 answer
UIPageViewController with PageControl
I'm using a UIPageViewController to display 4 other ViewControllers. So my RootViewController is a PageViewController which displays 4 other ViewControllers I created in my Storyboard with segues to different Views . All works perfect. But is it…

Daniel Kappacher
- 472
- 1
- 6
- 15
11
votes
1 answer
How to use the pageControl in Collectionview Inside the Tableview?
In my project I used a tableView inside a collectionView and also I used a pageControl. When I swipe the collection view horizontally, I want to switch the pageControl too, but it is not working properly. I used scrollViewDidScroll method for…

ashmi123
- 710
- 1
- 6
- 21
7
votes
1 answer
Creating Multiple Step Registration in iOS
How to create a multiple step registration form in iOS. Which is the best way ?
Have around 5 steps in total. Two have just agree and disagree button . Everything else has prev and next and finally submit.
1) Creating separate controllers for each…

user1447018
- 73
- 3
5
votes
4 answers
Custom PageControl image - Swift
I am trying to set an image for UIPageControl dots.
I need to change the default dots, instead of that I need an image.
I used the below code
self.pageCtrl.currentPageIndicatorTintColor = UIColor.init(patternImage: UIImage(named: "Page…

Vineesh TP
- 7,755
- 12
- 66
- 130
4
votes
2 answers
UIPageControl setCurrentPage - UICollectionView iOS6
I'm new to XCode so I need your help please.
I use a UIPageControl to show which cell of my collection View is now visible.
The problem is to get the visible cell:
I think in this Method
-(void)scrollViewDidEndDecelerating:(UIScrollView…

Daniel Kappacher
- 472
- 1
- 6
- 15
4
votes
2 answers
UIPageViewController scroll automatically
I'm using an UIPageViewController with a PageControl to display 3 images in my PageViewController. All works perfect. But is it possible that the Pages are swiping (scrolling) to the next page after a specific time automatically?

Daniel Kappacher
- 472
- 1
- 6
- 15
4
votes
1 answer
PageControl with multiple xib's?
I'm having trouble with getting Page Control set up with multiple xib's. I searched on Stack on the internet for a while now but all I've been getting is getting Page Control set up with an Array with colors or images. Is it possible to get a…

sridvijay
- 1,526
- 18
- 39
3
votes
1 answer
Value of type 'ImageSlideshow?' has no member 'pageControlBottomPadding'
When upgrade from swift3 to swift4, I have this error: Value of type ImageSlideshow? has no member pageControlBottomPadding
I use xcode10.1, swift4, target ios9.0 and above. ImageSlideshow version is 1.7.0.
There are also warnings: 'pageControl' is…

darkfruitmilk
- 79
- 1
- 8
3
votes
0 answers
Swift UIPageControl Programmatically dots not appearing anymore
Need some help. I've implemented a uipagecontrol where the dots are programmatically added. It was just working. I didn't touch the code but I was working on the UI in storyboard. Then I ran it and they've disappeared. I tried using the debugger…

Lukas Bimba
- 817
- 14
- 35
3
votes
1 answer
Set page control to the top of UIPageViewController
Currently i want to use UIPageViewController. But by default the page control is automatic place on the bottom of screen. so how can i achieve like the image below where the page control is on the top
i use container view and change the view…

madhatter989
- 271
- 1
- 5
- 14
3
votes
1 answer
How do I know which page from a Gtk.Notebook the user has clicked on?
I have a Gtk.Notebook that has a custom popup menu that is displayed when the user right clicks on any of the page buttons.
How can I know which notebook page the user clicked on? I want to add an action in my menu to make it the current…

bul
- 31
- 4
2
votes
1 answer
How to use page controls in spritekit? (Programatically)
I am creating a game and I want to include a page control (the three dots on the bottom of the screen - I would post a picture but I need more reputation!). This is so the user knows what page they are on while they are flicking through the scenes.…

CoderBob282745
- 23
- 3
2
votes
1 answer
page control current page not changing when i scroll my image
page control current page not changing when I scroll my image but when I click page control its works fine with changing image also scroll fine above is my code
help me to find my mistakes and correct it
scrollViewImage.delegate = self;
int…

iTALIYA
- 972
- 8
- 14
2
votes
1 answer
How to call removeView() when trying to set page control?
I am trying to set some images in swipeview and adding a pagecontrol in that view as given below :
//In onCreate
swipeView = (SwipeView) findViewById(R.id.swipe_view);
swipeView.setOnClickListener(this);
pageControl =…

user1744952
- 508
- 1
- 3
- 15
2
votes
1 answer
XE2 Update 4 TFrame with TPageControl behaves oddly with anchored controls
I cannot seem to find a resolution for this problem and am hoping someone here can direct me or assist me. I will try and explain from a dummy test program I did that fails in the same manner as my application.
I have frame that has all anchors…

Ann Gossard
- 123
- 8