The UIPageControl class is used in iOS to to create and manage page controls.
0
votes
1answer
172 views
iOS: UIPageControl outer dots do not respond when selected (inner dots do)
For my iPad App, I have a main ViewController which contains two UIScrollviews and a UIPageControl. This works well except when I have more than the default three pages in the UIPageControl, in which ...
1
vote
1answer
346 views
Horizontal scrolling control like the App store has
I need a horizontal scrolling control like the App Store:
Should I use UIScrollView combined with UIPageControl?
0
votes
1answer
387 views
iOS iPad App: Delegates not called for ViewController with two UIScrollViews and a UIPageControl (delegate functions for paging NOT CALLED)
For my iPad App, I have a main ViewController which contains two UIScrollviews and a UIPageControl.
The Problem is that the delegates for the paging are not getting called.
Here is the layout:
...
0
votes
1answer
82 views
UIScrollView layout change
I have a UIScrollView with a bunch of images. So far I have managed to change the size of the scrollview and its UIImageViews when the layout changes. But the problem is that when the layout changes, ...
0
votes
1answer
181 views
page control in xcode 4.0.2
I have a PageControl in a view and I implement it and its work good but not shown in view, there is no PageControl in view.
I can swipe between pages but its not appear for user.
What can be the ...
0
votes
0answers
20 views
Wrong page removed from UIScrollView
I have an NSMutableArray (sceneControllers) of UIViewControllers which I use for a scrollview.
My specific example, sceneControllers has 4 items, one for each page. On remove page (scene) I do:
...
2
votes
1answer
133 views
Inertial scrolling in UIPageControl with UIScrollView
I have a UIScrollView with paging enabled, and a corresponding UIPageControl to indicate the current page. This works well, but I'd like to introduce inertial scrolling to navigate multiple pages with ...
0
votes
1answer
62 views
UIImageView inside UIScrollView bleeding over next page
I have a UIScrollView and a UIPageControl with 5 pages. Each page is set at a different background color. Each page is 1024 x 768 and only landscape mode is supported and the content size is set to: ...
0
votes
1answer
90 views
UIPageControl to change URL of UIWebView
I have a UIWebView on my page with a UIPageControl:
The UIPageControl only has two buttons / dots, when on the first I need the UIWebView to load (www.mywebsite.com/page1.html) and when on the second ...
1
vote
2answers
100 views
How to set UIPageControl size correctly in iPad
I have a UIScrollView and a UIPageControl in my iPad app. I've placed them in the .xib file. My app supports landscape view only.
I try to set the width and height in code and it never looks right. I ...
0
votes
1answer
59 views
Using PageController with NavigationController
I am trying to implement a pageController within a Navigation Controller. For example
ViewController A -> ViewController b -> ViewController c (This Viewcontroller, "c" contains a PageController ...
0
votes
0answers
340 views
Access the UIPageController created by iOS6 UIPageViewController?
I'm using a UIPageViewController with Navigation set to Horizontal, Transition Style set to Scroll (in InterfaceBuilder), and no spine. Which gives me a lovely UIPageController integrated. Now I want ...
1
vote
1answer
167 views
How to correctly work with UIScrollView and UIPageControl?
I have a UIScrollView that I would like to use with a UIPageControl to have different pages to swipe horizontally. I need to add a UITextView and a number of UIImageView for every page.
In my ...
1
vote
1answer
390 views
How can i change the page on clicking the dots of UIPageControl
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)viewDidLoad
{
...
0
votes
2answers
120 views
UIScrollView with controls repeating on every page?
I have perfectly working UIPageControl. I would like to add paging by swipe, and as I understood, it is done by UIScrollView.
But all tutorials are done with images, I want to have controls (labels, ...
1
vote
1answer
146 views
Using UIScrollview within a UITabController to display UIImageView not displaying all pages
I'm following the "Paging with UIScrollView" section of How To Use UIScrollView to Scroll and Zoom Content with 4 images loaded into the array. I should mention that I'm loading this in a ...
2
votes
1answer
209 views
How to stop uiscrollview scrolling where user stopped touching the screen
I have a UIScrollView, and what I need, is that when the user stops dragging it, the scrollview stops scrolling to.
Sometimes it works, but sometimes, the scroll continues when the pression is ...
0
votes
2answers
182 views
how to add views to page control
scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];
scrollView.backgroundColor = [UIColor redColor];
scrollView.maximumZoomScale = 1.0;
scrollView.minimumZoomScale = 1.0;
...
1
vote
1answer
422 views
Attempting to incorporate apple's page control example into a storyboard viewcontroller
I have some images I'm trying to load within a scroll view similar to apple's page control example. My app crashes with an error of
'NSInvalidArgumentException', reason: '-[TutorialViewController
...
0
votes
0answers
47 views
How to link a text file to each Object in a UIScrollview that has UIPageControl enabled
I'm trying to make a text/HTML Editor for iPhone and iPad. My problem is that I've already got the UIScrollView and UIPageControl working with another Viewcontroller acting like an object that ...
0
votes
1answer
81 views
Vertical Pagination with Scollview, similar to CNN App
I am trying to implement a similar behavior of CNN App in article view, where at the end of the scroll, you can elastically pull the next article.
Does anyone know how to implement such a behavior?
0
votes
1answer
143 views
UIScrollView and UIPageControl, what am I doing wrong?
I have a class which is predefining some labels and binding their values in a UIScrollView.
I've managed to show those labels, but now I'm stuck at putting a label at the 2nd part of the ScrollView.
...
2
votes
2answers
402 views
UIControlEventValueChanged event is not triggered for the UIPageControl consistently
Lets assume we have ten pages.
An event handler for the event is added as below:
Run the app.
Now in the ten pages, by default page 1 (index 0) is selected. Touch the second page or third page. The ...
0
votes
0answers
122 views
UIPageControl showing wrong page when rotating device
This is a bit of an odd one.
I have a UIScrollView with 5 pages and have device rotation set up.
If I have the UIScrollView on page 1,2,3 or 4 and rotate from either portrait to landscape, or ...
0
votes
0answers
96 views
PageControl not showing the current page
I have a scrollView with a pageControl with 2 pages.
.h file:
IBOutlet UIScrollView *info;
IBOutlet UIPageControl *pageControl;
BOOL pageControlBeingUsed;
- (IBAction)changePage;
.m file
...
3
votes
1answer
1k views
Page count of UICollectionView with paging in iOS
Consider a UICollectionView with flow layout and paging enabled (by setting pagingEnabled to YES).
What would be the simplest way of obtaining the total number of pages?
And where would be the most ...
0
votes
0answers
108 views
Custom UIPageControl dots animation issue
I have this method that belongs to custom UIPageControl (JPPageControl):
- (void) updateDots
{
if(mImageCurrent || mImageNormal)
{
// Get subviews
NSArray* dotViews = ...
0
votes
1answer
65 views
Resetting UIPageControl Resets View To Original State
I have an iPad view that has a ScrollView, and below that I'm using a Page Control Object to show what page it is on. Elsewhere on the screen, I have a timeline between say 12:00 AM and 5:00 AM - as ...
0
votes
1answer
110 views
UIScrollView with PageControl with vertical scroll
I have UIScrollView i want that it should have paging vertically and also it should scroll only vertically not horizontally as normally does i have searched alot for this but i did not get anything.
2
votes
2answers
464 views
UIPageControl not visible when combined with UIScrollView
I'd like to make use of a page control to switch between several viewControllers. I have the following viewController whose associated nib contains a UIScrollView and a UIPageControl. I've placed the ...
0
votes
3answers
77 views
How to get the image in center of view using PageControl
I have 15 images in pagecontrol and I have 15 buttons in my application
Now if I press button 5 at that time image 5 from the page control should be in center of the screen.
if I press button 10 at ...
1
vote
1answer
62 views
How to set initial view of AFImageViewer framework?
I'm building a photo gallery for an app that loads latest wall pictures from a facebook page. I've got a thumbnails gallery and a detail view much like many other photo galleries.
I found this nice ...
0
votes
1answer
61 views
Page Control not set to middle
In my project I am using Horizontal UItableView and UItableviewcell.
It work good.
But the cell not set middle.
I want set the my view like following images.
Note : I am getting this images from ...
0
votes
1answer
148 views
how to implement both horizontal and vertical scrolling in page control in ios
I have different views and also page control.the horizontal scrolling is working by sliding the views.Now i want to implement vertical scrolling in each view how to implement that.
0
votes
2answers
3k views
Swiping Images with Page Control in Iphone
I am trying to make practice app where i can scroll images with page control. I am able to scroll images and able to include the page control. But the problem i face is i am not able to interlink the ...
0
votes
0answers
96 views
Reimplementing UIPageController
I am implementing UIPageController
The custom UIPageControl works. I mean it displays the new better dots when first show up. However, when user clicks the dots, the custom setCurrentPage is not ...
0
votes
2answers
63 views
UIPageControl lagging on retina devices
I've implemented an iphone app with a page controller following Apple's code example. There are only 3 views on the page controller. The app works fine on normal screens, but when I test it on retina ...
2
votes
1answer
663 views
UIPageController in conjuction with UIPageControl?
I have been using UIPageController to navigate between different controllers. Now I would like to add that dots at the bottom, so user can see on which controller he is at. That is achieved via ...
0
votes
1answer
104 views
Embedding UIPageControl inside a TabBarController stack
I'm building an application which has a TabBarController at the top level. Contained within one of the tabs there is a tableview, and when a row is selected, I'd like to go to a set of 5 views, ...
1
vote
1answer
358 views
Why isn't my UIPageControl updating when the ScrollView scrolls?
I'm trying to make a table whose cells have UIPageControls with ScrollViews in them. The ScrollViews work and the PageControls are there, but the PageControl does not update when scrolling happens ...
1
vote
1answer
24 views
Is it possible to put a objects other than UIViews into a custom TableViewCell?
I am trying to create a UITableView that has cells with PageControls in them, which would allow each cell to scroll sideways to different views... I am using the Apple UIPageControl project here and ...
1
vote
1answer
205 views
viewController.view.superview is nil
I'm trying to implement a page-scroll functionality in my project. I develop for iOS 5, with storyboards (and ARC). This is what I did in my storyboard :
The first viewController (on the left) has ...
0
votes
1answer
99 views
iOS drag & drop for UIPageControl
Is there a way to implement for iOS a drag and drop behavior for a custom icon located in the first page of a UIPageControl to the second page (like moving icons from iPhone's home screen to a ...
2
votes
1answer
333 views
*** -[__NSArrayM release]: message sent to deallocated instance
I am developing a app similar to PageControl sample provided by Apple.
My app fetch data from server and store it in an NSMutableArray locally.
Then display that array in grid format by loading cell ...
0
votes
1answer
99 views
iOS UIPageControl Replace Status Bar
I am wondering how you would replace the status bar or at least place the page control over it? This would be a temporary placement for a couple seconds each time someone pages then it will ...
0
votes
2answers
429 views
How to create a paging scrollView with space between views
I followed the tutorial about how to create a scrollView Page Control: http://www.iosdevnotes.com/2011/03/uiscrollview-paging/
This tutorial is really good and I implement well the code. Here my ...
1
vote
0answers
46 views
PageController in OS x application
I need to implement a UIPageController like thing in my OS x application. But I couldn't find any default controls in mac library. Anyone knows how to implement it? Thanks in advance!
-1
votes
1answer
249 views
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 ...
0
votes
0answers
89 views
UIPageControl require XIB?
All the examples I've seen for PageControl has used XIBs to switch between views when you scroll. Is this a requirement? Is it possible to load another viewController in Storyboard for the ...
0
votes
2answers
413 views
How to reload scrollView with different array in iphone
I have taken 2 image arrays like
A=["l.jpg","m.jpg","n.jpg","p.jpg","q.jpg","r.jpg"]
and
B=["a.jpg","b.jpg","c.jpg"].
Then to display images have added scrollview with pagecontrol
...


