UIPageViewController iOS UIViewController container class that manages the display of, and animated transitions among, one or more content view controllers.
4
votes
3answers
34 views
Three Layers of Pan Gesture Recogniser Confusion
Whilst developing an app I have come up against a problem with having too many pan gesture recognisers.
My first pan gesture recogniser is on the MainViewController which is a parent of the ...
1
vote
0answers
28 views
UIPageViewController in ios 5.1
I am using UIPageViewController to display two view controllers.i want this view controllers to be displayed in different pages and on swiping, page should get turned. When i run this in iPad ...
1
vote
1answer
13 views
objective-c UIPageViewController and PageControls
I'm creating UIPageViewController and overriding these functions:
- (NSInteger)presentationCountForPageViewController:(UIPageViewController *)pageViewController
- ...
0
votes
0answers
14 views
How do I use a UIPageViewController in a UISplitViewController?
I am trying to use a UIPageViewController as the main view in a UISplitViewController, but it does not work properly with paging gestures. For instance, if I try to swipe to the next page, the next ...
0
votes
0answers
28 views
UIPageViewController: display error when user aborts pangesture
Here is my problem: I've implemented a calendar in week mode, navigation between weeks is done using a UIPageViewController in pagecurl mode (quite similar to the standard calendar of the iPad). ...
0
votes
0answers
36 views
UIPageViewController strange shadow bug?
I use UIPageViewController for scroll pages in my app like a news (page curl animation, tap and swipe on definied area). App is landscape, scroll works, but when I scroll forward then next page darker ...
0
votes
1answer
26 views
Should I put the other controlls in the content view controller or in page viewcontroller
I'm still trying to understand what are the best practices of IOS as I'm still new to the IOS platform.
Currently I'm developing a questioner using UIPageViewController and it's working fine.
...
0
votes
0answers
23 views
Change UIPageViewControllerOptionInterPageSpacingKey on the go?
Is it possible to change this value in the UIPageViewController as I browse through the pages so I can connect odd and even pages accordingly as they are in a real magazine?
I know this can be ...
0
votes
0answers
48 views
UIPageViewController Curl not working smoothly
I am using a UIPageViewController Curl to go through pages. The swipe from bottom to top is working fine in my simulator but when i install it in my ipad the swipe sometimes got delayed or not working ...
0
votes
3answers
72 views
Tell When a UIPageViewController is Scrolling (for Parallax Scrolling of an Image)
I am trying to make an effect similar to that found in the new Yahoo weather app. Basically, each page in the UIPageViewController has a background image, and when scrolling through the page view, the ...
0
votes
0answers
23 views
Cycling from last to first (and vice versa) with UIPageViewController
I have two view controllers, let's call them transmit and receive. They are instantiated from storyboard in my parent view controller's viewDidLoad, and the first one is initially added to a ...
-3
votes
0answers
16 views
UIpageViewController pagecurl [closed]
Hai iam new to UIpageviewController and I don't know how to use it . I want to implement UIpageview controller in my project please help me with source codes or tutorials . I have already built it as ...
2
votes
1answer
41 views
Using UIPageViewController in a UIView
I'm trying to create a book reading application on IOS/Xcode4.6 and I created a UIPageViewController. The application is for iPads and it'll always be on landscape mode, so I'm displaying two ...
0
votes
0answers
17 views
UIPageViewController with TitleIndicator for ios
I'm beginner in iOS and I would like to do an app with a title above a UIPageViewController as Android with a ViewPager and TabPageIndicator... I'm not looking for a TabBarController because I want to ...
0
votes
0answers
40 views
adding UIPageviewController with UIWebview create unexpected memory crash in iPad3 but working perfectly in iPad2
I am working on iPad ebook type application. I have to get the data from web service and display it in webView at the start of the application. so at the start of the application i am creating an ...
0
votes
1answer
51 views
Delete previously added viewControllers from the UIPageViewController
I'm using an array to add some viewControllers on the UIPageViewController. The problem is that they stay in memory when you swipe further and I want to delete them. I found this delegate method:
- ...
0
votes
0answers
33 views
UIWebview load html page with jpeg image error
I am loading around 200 uiwebview with html content in UIPageViewController application.
The application is kind of ebook which has table of contents so user can traverse to any pages from Table of ...
0
votes
1answer
78 views
uipageviewcontroller and uiwebview in IOS
Here I have html content which is displayed using UIWebView. The webview is displayed in horizontal scrolling and which looks like scrolling page by page and currently I have implemented the normal ...
0
votes
1answer
67 views
Page View Controllers with scroll effect vs. UIScrollView with Paging Enabled
I don't understand what's difference between Page View Controllers with scroll effect and UIScrollView with Paging Enabled.
If they are have the some scroll effect, which one do you think better?
0
votes
0answers
45 views
Implementing zoom & pan in a 2 page UIPageViewController
I am trying to implement zooming and panning on a 2-page UIPageViewController in landscape mode. I have set a scrollview as the view of parent viewcontroller of the pageviewcontroller. This allows the ...
0
votes
1answer
59 views
Why does my UIPageViewController crop itself during curl transition?
In StoryBoard, I have setup two view controllers:
PageViewRootViewController - this is just blank (in storyboard) as everything is setup programmatically.
VillagerTextViewController - Storyboard ...
1
vote
0answers
97 views
UIPageViewController behavior different for Scroll & PageCurl
I am seeing different behavior between a UIPageViewController using Scroll transitions versus PageCurl. PageCurl works the way I expect but when using Scroll-ing I sometimes see extra (nonsensical) ...
1
vote
0answers
56 views
UIPageViewController - transparent areas on view controllers blend wrong
Is there a way to tell UIPageViewController to not do shadowing or blending on pixels with alpha value of 0? Right now those areas show up translucent and it looks really bad.
Even better would be a ...
0
votes
1answer
70 views
UIPageViewController rotation weirdness
I've added a UIPageViewController to my app to act as a manual for the app. When the user pops it up it shows one page in portrait and two in landscape with the spine in the middle. Since I have about ...
4
votes
1answer
125 views
UIPageViewController Second View Goes Blank
I'm experiencing some very odd behavior when using UIPageViewController in my app. On the first swipe to the next view or anytime the direction of swiping changes (i.e. at the end of the list and ...
0
votes
1answer
40 views
How to create a multi flip button in iPhone like a pickerview
I want to create a small sub view which has 3 buttons(say A,B,C) in it. The view should have an infinite scroll so that it should create a circular loop for those buttons when I scroll ie. if I scroll ...
0
votes
0answers
35 views
UIPageViewController - How do I capture touch points?
This is simple. I have an iBooks-like app that has a UIPageViewController as a child viewController. When the page curl kicks in, how do I capture the user's touch point/s? I wish to continually track ...
0
votes
1answer
57 views
UIPageViewController - Verifying Page Turn with alert
I'm using a UIPageViewController to handle data entry where the last page is the active record and the previous pages are old records that can't be edited. So I need a way to verify that the user ...
0
votes
1answer
59 views
Mimic Apple's iBooks pages? [closed]
I'm trying to find a solution to display a ton of formatted text in my iPhone/iPad app. The absolute most user-friendly way to do so would be to use a paginated view, like Apple's iBooks does. My data ...
0
votes
1answer
44 views
UIPageViewController Transparency of Page
By default, while using UIPageViewController, the pages are a little transparent. This semi-transparency is visible when turning the page. Is there any way to make the page solid so that the page ...
1
vote
0answers
206 views
how to add two view controllers in UIPageViewcontroller
I m using UIPageViewController on iPad where i need to show a "firstviewController" in the first page and "ContentViewController" in the next page in landscape.
If I set the NSArray with two ...
0
votes
0answers
51 views
Change value of a UIPageViewController's viewControllerAfterViewController method after a variable has been set?
I have a UIPageViewController that's working as expected, and it has my child view controllers on each page and everything is great. On one of the pages, I want it so that when a Boolean is set to YES ...
0
votes
1answer
209 views
Using UIPageViewController in storyboards
Is there a way to configure datasource, delegate and view controllers for UIPageViewController in storyboard without writing a code? I do see outlets for datasource and delegate in ...
0
votes
0answers
147 views
Simple pdf viewer using UIPageViewController
I have a problem.
I'm trying to make a simple app to view pdfs with an UIPageViewController but I can't get it working.
I tried to use the project listed on the github page below.
...
0
votes
0answers
34 views
UIPageViewController cancel Touchevents
I am working at a App with the UIPageViewController. Everything works fine but i dont like that the page is changed with one touch on the left or right side. I know that i get the event with ...
0
votes
2answers
56 views
Cannot Impliment UITextview inside a UIPageViewController
I have a strange issue , I have a page app in which one page I had used a UITextView, but when I tap on the UITextView it moves to the next page, can't write anything on it.
There is no issue when I ...
0
votes
0answers
41 views
UIPageViewController with Custom UISubview- not receiving touches
I have a Page-Based application, with Custom UIView added as a subview (separate nibs and class). The subview has a button. The subview is on the topmost layer of views but then whenever I click the ...
0
votes
0answers
46 views
UIPageViewController in XIB Error
I have a subclassed view controller and in Interface Builder I want a subview of the VC's view to be a UIPageViewController's view. I set the UIPageViewController's datasource to File's Owner and the ...
0
votes
1answer
175 views
Create a UIPageViewController with a UITableView in each page
I have been reading things on stack overflow for quite a while now but this is my first post, only because it is the first time I have a problem that no one else seems to have fixed yet!
Ok, down to ...
0
votes
1answer
67 views
Can't find where to add UIBarButtonItem
I have a UIPageViewController in a NavigationController and one of the ViewControllers presented by the UIPageViewController needs to be able to add a 'Save' button to the navigation bar.
The problem ...
0
votes
1answer
66 views
UIPageViewController page segues to another scene which doesnt handle rotation
I am building an app using UIPageViewController with the scrolling style do implement many pages that the user can swipe between, on each page they can click on a button that modally opens another ...
2
votes
1answer
117 views
PageviewController is not showing the viewcontrollers in correct order
I am trying to work with a PageviewController. I have 4 ViewControllers but they are all different. In one I have an image, in the second I have a tableview,...
I want to scroll through it with a ...
1
vote
0answers
148 views
Zooming in UIPageViewController with spineLocation:mid
I am trying to implement a PDF reader with neat page-turning animations AND zooming for two-page exhibition on a landscape mode iPad.
I was able to do this partially by creating a UIScrollView with ...
0
votes
3answers
88 views
PageviewController always gives back an index like 2147483648
I am trying to implement a UIPageViewController. I have 4 separate viewControllers created and added to my storyboard. Now I want to scroll through it with a UIPageViewController. This is what I do in ...
0
votes
1answer
158 views
Refresh UIPageViewController - reorder pages and add new pages
I have a UIPageViewController which I am providing page data for using an implementation of UIPageControllerDelegate and UIPageControllerDataSource.
It's all working fine, but I want to be able to ...
0
votes
0answers
71 views
Data source for PageViewController - usage of arrays/dictionaries to store view controllers in data source
I am implementing a scroll style page view controller for my app, based on the page based application template.
In the data source class, I am storing the list of view controllers in a dictionary ...
2
votes
2answers
155 views
How can I add new pages to a UIPageViewController after the user has reached the last page?
I have a UIPageViewController that contains view controllers that are instantiated from data fetched over the network. When the user is paging and gets within a few pages of the end, I kick off a new ...
0
votes
1answer
105 views
Customizing navigation behavior of UIPageViewController
I'd like to customize the navigation behavior of UIPageViewController; specifically I'd like to navigate to different pages based on where on the screen the user drags her/his finger. Any pointers on ...
4
votes
2answers
220 views
iOs Modal transitions like Mailboxapp
I started developing an iOs app for my employers some days ago. They would like to get a transition flow like the MailBox App. I already figured out how to do the split menu on the left but I can't ...
0
votes
0answers
77 views
UIToolbar overridden by UIPageViewController
I have programmatically added a UIToolbar to the page in a UIPageViewController's view. I do this so that the toolbar will be animated by the pagecurl when turning pages. Unfortunately the UIToolbar ...






