Questions tagged [uipagecontrol]

The UIPageControl class is used in iOS to to create and manage page controls.

A page control is a succession of dots centered in the control. Each dot corresponds to a page in the application’s document (or other data-model entity), with the white dot indicating the currently viewed page.

When a user taps a page control to move to the next or previous page, the control sends the UIControlEventValueChanged event for handling by the delegate. The delegate can then evaluate the currentPage property to determine the page to display. The page control advances only one page in either direction.

UIPageControl Class Reference

748 questions
0
votes
2 answers

How can i add six controller in an uiscrollview?

My Question is little bit bigger so apology for that. Now my problem is i have to set a tabbar controller where first tab will contain an UIScrollView with an UIPageControl, until now i have made my tabbar controller with scrollview and…
0
votes
1 answer

Uipagecontrol animation

I have customized the page control where I am using the scrollview , which consists of 3 pages. the dots has been customized. but while swiping the page , can I change the animation to be quick dissolve animation. Does it look good for page control…
user1305194
  • 9
  • 1
  • 6
-1
votes
1 answer

Is it possible to go to the specific page with PageControl Dots?

I face with a problem about UIPageControl dots. For instance, I made a banner with scrollview and I would like to travel in banner items by clicking dots of page control added below banner scroll view, but I couldn't find any proper option to go to…
-1
votes
1 answer

How to determine that the scroll reached to specific position(I have to determine the space from bottom should be 56 px) while scrolling in iOS swift

I have a ScrollView on a view, where the page control is sticky from the bottom. The page control is animated in and shown when the page is scrolled to 48px from the bottom of the page and stays opacity 100% (shown) to the end of the page. But I am…
user1960279
  • 494
  • 1
  • 8
  • 24
-1
votes
1 answer

How to increase selected dot in UIPageControl. (iOS 12.4, not duplicate)

Please do not report this question. This question are not similar with another questions about UIPageController!!! Stop flag. Read carefully. I find a lot of other question about UIPageControl. But every question about ALL dots in UIPageController.…
Sergey Udalov
  • 75
  • 1
  • 7
-1
votes
2 answers

Programatically created UIPageControl not showing

In my view hierarchy, I have a UIPageViewController (inside a container view). Underneath that is the UIPageControl and at the bottom is a stack view consisting of a text view and a button. I see the UIPageViewController and the stack view but not…
BVB09
  • 805
  • 9
  • 19
-1
votes
2 answers

How to jump back to a first index of a page in UIPageviewController

I currently have a button that currently displays a UIPageViewController as an overlay on the homescreen. The user can always click on it and it would still display this ViewControllers embedded in a UIPageViewController. However at the moment, when…
sk123
  • 580
  • 1
  • 8
  • 29
-1
votes
2 answers

Is it possible to have an infinite horizontal paging uiscrollview for page control in swift 4?

Say I have an array of strings and every time I swipe, I want the text on the screen to be a random string from the array without reaching an end. How would I do that?
-1
votes
1 answer

to change the position of pagecontrol

I have used UIPageContol in UIPageViewController as below:- uipageviewcontroller class:- class PageControllerViewController: UIPageViewController, UIPageViewControllerDataSource, UIPageViewControllerDelegate { private var pageViewModel…
-1
votes
1 answer

UIPageControl: dots with rectangular format

I use native UIPageControl in my objective-c application and I want to have a rectangular dots instead of circular one. I searched about that and for a library providing this but I didn’t found anything. I tried to do it like this but it has no…
Ne AS
  • 1,490
  • 3
  • 26
  • 58
-1
votes
1 answer

PageViewController scroll bug (over scrolls)

I was following the tutorial here and had to make a few changes to fit my project (code of my variation here, sorry I put it on GitHub because it's a bit lengthy to copy and paste). Sometimes when I swipe right to get to the last VC, it…
stumped
  • 3,235
  • 7
  • 43
  • 76
-1
votes
1 answer

Want attached image type page control

I want below image as page control in iOS, iPhone.
Dheeraj Kumar
  • 490
  • 3
  • 12
-1
votes
1 answer

'unrecognized selector sent to instance' for UIPageControl ValueChanged event

I am trying to programmatically use addTarget() to add ValueChanged Event for UIPageControl object in mainView. var pageControls = mainView.subviews.filter { $0 is UIPageControl } as [UIPageControl] for p in pageControls { println("\(p.tag)" …
Adaoli
  • 27
  • 1
  • 5
-1
votes
1 answer

Can you Connect both a TabViewController and a PageViewController to a single ViewController?

I'm Building a TabBar iOS application, and on one of the tabbed views I want to place a pagecontrol object in which I want to the user to be able to swipe through 3 pages (in the same tabbed view). How do I do so?
-1
votes
1 answer

Create new pages with a button using PageController

How would I programmatically create new pages that are controlled by the PageControl dots? I want to create a button that makes pages. Each page should be added to the set of pages that you can flip through, using the page controller. How would I…
user2200321
  • 325
  • 1
  • 4
  • 18
1 2 3
49
50