Questions tagged [uipageviewcontroller]

UIPageViewController is an iOS container view controller that manages the display one of one or more content view controllers. It provides the ability the change of the controller via swipe gestures and also supports animated transitions.

UIPageViewController is a container view controller that manages navigation between pages of content, where each page is managed by a child view controller.

A UIPageViewController lets the user navigate between pages of content, where each page is managed by its own view controller object. Navigation can be controlled programmatically or directly by the user using swipe gestures. When navigating from page to page, the page view controller uses the transition that you specify to animate the change.

Important

In tvOS, the UIPageViewController class provides only a way to swipe between full-screen content pages. Unlike in iOS, a user cannot interact with or move focus between items on each page.

References:

2071 questions
0
votes
2 answers

How flip page after time interval?

I use template Page-Based Application(RootViewController, DataViewController, ModelController) in Xcode. I want to flip page after time interval. How can I do it? Code for flip next page - (UIViewController…
user214155
  • 111
  • 1
  • 1
  • 8
0
votes
2 answers

call a method of a parent view from a view embedded in a UIContainerView. swift

ill try to explain this as best i can. i have a UIViewController. inside it there is a 'SKIP' button and theres also a UIContainerView. embedded in that container view is a UIPageViewController. the Page View Controller have 4 pages. i want to be…
0
votes
2 answers

(Swift) need step-by-step on how to swipe between my view controllers

I have tried so many different blog and video tutorials and all of them are very convoluted. I can't imagine this technique is as hard as it seems to be. These are my view controllers: All I want is for, after signing, my app goes to the middle…
evanhaus
  • 727
  • 3
  • 12
  • 30
0
votes
0 answers

PageViewController bottom dots bug

what the bug looks like I'm having this weird action when I use the following code to display those little dots in UIPageViewController. How can I fix it? Is this a swift bug or I'm doing something wrong? func…
AlexBains
  • 295
  • 6
  • 14
0
votes
1 answer

UIPageController inside UINavigationController is offset from the top?

This a little bit wierd i have made UIPageController that works and everything is fine. But when i put it inside UINavigationController, it offset from the for status bar. Than i swipe up on that screen it positions itself right and everything is…
MegaManX
  • 8,766
  • 12
  • 51
  • 83
0
votes
1 answer

Reduce app memory footprint

I have a very image heavy app. (And before you say: no I can't reduce the amount of images). This means that there are a lot of UIImageViews going on in my storyboard files. The overall structure of the app is something like this: The Content View…
Rob Sanders
  • 5,197
  • 3
  • 31
  • 58
0
votes
1 answer

UIScrollview like transition between view controllers

I am trying to implement the view controller transition of a UIScrollview between view controllers, both horizontally and vertically. I don't want to use a scrollview or a UIPageviewcontroller, I just want that transition both horizontally and…
0
votes
1 answer

How to go next page ++ in UIPageviewController when i click UIButton in iOS

Now I am creating app tour for my app by using uipageviewcontroller, its working fine when I am swipe the pages in view controller but what I need was the page will move when I click the button below is my button click action here i can able to put…
Hari Narayanan
  • 754
  • 1
  • 12
  • 36
0
votes
1 answer

How to add a button to bottom of UIPageViewController

I would like to add a button to my UIPageViewController just like the bottom right button of the iOS Weather app. I would like to know what is most correct and clean way of doing it. Should I access the PageControl somehow and add a subview with the…
Mig70
  • 61
  • 10
0
votes
1 answer

How to implement a static menu bar in an UIPageviewcontroller?

im trying to build in a static menu bar in my uipageviewcontroller like youtube has. Does anyone know how to implement it ?
Kroplay99
  • 9
  • 5
0
votes
1 answer

How to add multiple view controller in a page controller

I want to add multiple view controller in a page controller so that view controller can scroll left and right side in page view controller. How to do like this..?
0
votes
1 answer

Pageview controller scrolling issue when pageview is inside another pageview in ios

I have an app in which I am using Page View Controllers for multiple pages. There is a main page view controller which contains 3 pages. My 3rd page from main page view controller is also a page view controller which has 5 pages inside it. My…
Manthan
  • 3,856
  • 1
  • 27
  • 58
0
votes
1 answer

Why is the button in the parent view controller not getting fired?

I created a page view controller with the parent and child view controller. The child view controller has a clear background, and the parent view controller has a white background. When I place a button in the parent view controller, and connect it…
manatee
  • 185
  • 1
  • 10
0
votes
0 answers

ViewController class for Page Based Application (PageViewController)

I have a PageViewController with two View controllers. Is it possible to create a custom class for ViewController to control behaviour? for instance, one of the ViewControllers has a button and I create a class for this ViewController to control the…
0
votes
1 answer

How to move from ViewController1 to ViewController2 on a button click in a page based application (PageViewController)

I have a page based application with two View Controllers.On clicking a button in ViewController1, I'm trying to move from ViewController1 to ViewController2. Suppose, ViewController1 is of index 0 and ViewController2 is 1.This is what I'm trying to…
confused human
  • 401
  • 8
  • 23
1 2 3
99
100