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
-1
votes
2 answers

UIScrollView + UIPageControl + UIButton

How do you make a menu like in Cut the Rope game. Image below: I am able to make three images slide horizontally but failed to make it as a button. Though I don't need it to be fancy as the game's, but just a simple button. Do I need to stack three…
Jahm
  • 658
  • 1
  • 12
  • 27
-1
votes
1 answer

How do i apply 'page control' to images and make an automatic slideshow?

i want to a apply a page control section within one of my controllers and make an automatic slideshow from this. If you would like to see what i mean, look at the application - Goal.com app.
-1
votes
1 answer

Uipagecontrol customization in iOS

I am trying to add different views on the pages of a uipagecontroller.Have total of three pages.That is in the first page i have to implement a map,in the second view,a simple view with some labels and the in the third view,a table.I followed the…
iOS Developer
  • 1,723
  • 2
  • 16
  • 47
-1
votes
1 answer

how to use pagecontrol for showing images within imageview

I have an image view inside a scrollview and i am using a pagecontrol for scrolling images.The problem is only last image showing not the first two images.But when i scroll i can see the second image for some extend and then disappears.how to solve…
priyanka vijesh
  • 227
  • 1
  • 3
  • 7
-2
votes
1 answer

Does anyone know how to get this to work i am trying to use pagecontrol to make a slideshow but index shows a error

class ViewController: UIViewController, UIScrollViewDelegate { @IBOutlet weak var pageControl: UIPageControl! @IBOutlet weak var scrollView: UIScrollView! var images: [String] = ["0","1","2"] var frame = CGRect(x:0,y:0,width:0,height:0) override…
-2
votes
1 answer

UIPageControl at Swift

i've added an UIPageController in my application. I populate it from rest services and then when click one of page, it will goes directly to latest one. I'm missing something but what i cant solve. How can i make for get selected one instead of…
Kuroiteiken
  • 308
  • 3
  • 15
-2
votes
1 answer

PageControl dosn't animate when swiping to next picture

I have an array of pictures that are past to an imageView on a new ViewController. I'm able to have my pageControl show the dots, but they do not animate when I swipe to the next picture. Any ideas on what I am missing as I cannot figure it out?…
beans217
  • 139
  • 2
  • 11
-2
votes
1 answer

Subclassing the UIPageControl for customizing the active and inactive dot image

I'm using the UIPageControl for tutorial screen in my app. It's a basic usage of UIPageViewController where user can swipe through info screens to get the essential information about the app usage, while each swipe updates the UIPageControl dots at…
bra.Scene
  • 628
  • 8
  • 14
-2
votes
1 answer

UIPageControl with UIScrollView

I have UIPageControl with 50+ pages (dots). And all these dots don't fit in width of the screen. Please tell me how to make it display only 5 - 7 dots, and current page (dot) in the center of scroll view, like Instagram when paging collection…
-2
votes
1 answer

My Page Control UI is not getting updated?

My page control UI is not getting updated. The page control number is getting updated every time, but it's not being updated in the Page Control UI. I thought maybe using updateCurrentPageDisplay would work, or that was what I was missing, but I…
bradford gray
  • 537
  • 2
  • 5
  • 18
-2
votes
1 answer

Using Scroll View and Page Controller for tutorial screen

I want to make a tutorial screen and have put a scroll view and a Page Controller. I want to put image so that the user can swipe through the tutorial screen on first boot. However I can put labels like this - (void)viewDidLoad { [super…
Reia
  • 17
  • 1
  • 1
-3
votes
1 answer

How do I replace UIPageControl dots with UILabel to display number of pages

I want to replace the dots of UIPageControl with UILabel to display a text like page 1 of 30 in swift language.
Fatima
  • 464
  • 1
  • 8
  • 19
-3
votes
1 answer

how to change view controller on swipe in iphone sdk?

I want to change view controllers by swiping controller like i when i swipe the message box should swipe from ViewController1->ViewController2 and from viewController1<-viewController2 i know i have to use UISwipeGestureRecognizer or may be…
1 2 3
49
50